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