Sign in
go
/
tools
/
e884e0ef6dcd6d7d93a39bc86550a0f71c9c5e6a
/
.
/
refactor
/
eg
/
testdata
/
D.template
blob: 6d3b6feb71d45b41aba7c10180a598470db395e0 [
file
] [
log
] [
blame
]
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
,
"!"
)
}