github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/tools/refactor/eg/testdata/D1.go (about) 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 }