Sign in
go
/
tools
/
079ac3a490a18433496e4e5bf58fd5e27c6b3d05
/
.
/
refactor
/
eg
/
testdata
/
D1.go
blob: ae0a806050d7ad919c8883c067dc1b7797331567 [
file
] [
log
] [
blame
]
// +build ignore
package D1
import "fmt"
func example() {
fmt.Println(123, "a")
// match
fmt.Println(0x7b, `a`)
// match
fmt.Println(0173, "\x61")
// match
fmt.Println(100+20+3, "a"+"")
// no match: constant expressions, but not basic literals
}