mirror of
https://github.com/golang/go
synced 2024-11-05 15:06:09 -07:00
bfcffc697d
See refactor/eg/eg.go for details. LGTM=crawshaw R=crawshaw, gri, kamil.kisiel, josharian CC=golang-codereviews https://golang.org/cl/81010043
13 lines
251 B
Plaintext
13 lines
251 B
Plaintext
// +build ignore
|
|
|
|
package D1
|
|
|
|
import "fmt"
|
|
|
|
func example() {
|
|
fmt.Println(456, "!") // match
|
|
fmt.Println(456, "!") // match
|
|
fmt.Println(456, "!") // match
|
|
fmt.Println(100+20+3, "a"+"") // no match: constant expressions, but not basic literals
|
|
}
|