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