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