ef4291c18ac5d12dec5d0a21bfbea002c56cb8ba
[dotfiles/.git] / H1.go
1 // +build ignore
2
3 package H1
4
5 import "go/ast"
6
7 func example() {
8         _ = ast.BadExpr{From: 123, To: 456} // no match
9         _ = ast.BadExpr{123, 456}           // match
10         _ = ast.BadExpr{From: 123}          // no match
11         _ = ast.BadExpr{To: 456}            // no match
12 }