ae0a806050d7ad919c8883c067dc1b7797331567
[dotfiles/.git] / D1.go
1 // +build ignore
2
3 package D1
4
5 import "fmt"
6
7 func example() {
8         fmt.Println(123, "a")         // match
9         fmt.Println(0x7b, `a`)        // match
10         fmt.Println(0173, "\x61")     // match
11         fmt.Println(100+20+3, "a"+"") // no match: constant expressions, but not basic literals
12 }