Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / refactor / eg / testdata / D1.golden
1 // +build ignore
2
3 package D1
4
5 import "fmt"
6
7 func example() {
8         fmt.Println(456, "!")         // match
9         fmt.Println(456, "!")         // match
10         fmt.Println(456, "!")         // match
11         fmt.Println(100+20+3, "a"+"") // no match: constant expressions, but not basic literals
12 }