Sign in
go
/
tools
/
6a387a400b7de86c9e97f1e0432973cdaa32c2ac
/
.
/
refactor
/
eg
/
testdata
/
D1.go
blob: 03a434c8738bc466a5ee59b472a0a4fddac835a1 [
file
] [
log
] [
blame
]
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
}