aboutsummaryrefslogtreecommitdiff
path: root/refactor/eg/testdata/D1.golden
blob: 3f2dc5937117872c057cf636de8ffb35d90dce22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// +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
}