23 lines
163 B
Plaintext
23 lines
163 B
Plaintext
|
-- in --
|
||
|
package p
|
||
|
|
||
|
templ f() {
|
||
|
@Other(
|
||
|
p.Test,
|
||
|
"s",
|
||
|
){
|
||
|
<p>hello</p>
|
||
|
}
|
||
|
}
|
||
|
-- out --
|
||
|
package p
|
||
|
|
||
|
templ f() {
|
||
|
@Other(
|
||
|
p.Test,
|
||
|
"s",
|
||
|
) {
|
||
|
<p>hello</p>
|
||
|
}
|
||
|
}
|