Sign in
go
/
tools
/
6e5f4255c4dbfe627d9696cf1691f5fe60ceec7d
/
.
/
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
,
"!"
)
}