Sign in
◑
Theme
go
/
tools
/
25ed04f2a321349c269ef8da8e9513433f2c4e3e
/
.
/
refactor
/
eg
/
testdata
/
D.template
blob: 6d3b6feb71d45b41aba7c10180a598470db395e0 [
file
]
package
template
import
"fmt"
// Test of semantic (not syntactic) matching of basic literals.
func before
()
(
int
,
error
)
{
return
fmt
.
Println
(
123
,
"a"
)
}
func after
()
(
int
,
error
)
{
return
fmt
.
Println
(
456
,
"!"
)
}