mirror of
https://github.com/golang/go
synced 2024-11-19 07:44:49 -07:00
9 lines
217 B
Plaintext
9 lines
217 B
Plaintext
|
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, "!") }
|