1
0
mirror of https://github.com/golang/go synced 2024-10-01 12:48:33 -06:00
go/refactor/eg/testdata/G1.golden

13 lines
223 B
Plaintext
Raw Normal View History

// +build ignore
package G1
import "go/ast"
func example() {
_ = ast.BadExpr{123, 456} // match
_ = ast.BadExpr{123, 456} // no match
_ = ast.BadExpr{From: 123} // no match
_ = ast.BadExpr{To: 456} // no match
}