1
0
mirror of https://github.com/golang/go synced 2024-10-01 10:38:33 -06:00
go/refactor/eg/testdata/D1.go
Alan Donovan bfcffc697d go.tools/refactor/eg: an example-based refactoring tool.
See refactor/eg/eg.go for details.

LGTM=crawshaw
R=crawshaw, gri, kamil.kisiel, josharian
CC=golang-codereviews
https://golang.org/cl/81010043
2014-04-02 12:24:55 -04:00

13 lines
272 B
Go

// +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
}