| 1 | package D1 |
|---|---|
| 2 | |
| 3 | import "fmt" |
| 4 | |
| 5 | func example() { |
| 6 | fmt.Println(456, "!") // match |
| 7 | fmt.Println(456, "!") // match |
| 8 | fmt.Println(456, "!") // match |
| 9 | fmt.Println(100+20+3, "a"+"") // no match: constant expressions, but not basic literals |
| 10 | } |
| 11 |
Members