...

Text file src/golang.org/x/tools/refactor/eg/testdata/D.template

Documentation: golang.org/x/tools/refactor/eg/testdata

     1package template
     2
     3import "fmt"
     4
     5// Test of semantic (not syntactic) matching of basic literals.
     6
     7func before() (int, error) { return fmt.Println(123, "a") }
     8func after() (int, error)  { return fmt.Println(456, "!") }

View as plain text