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