blob: ef4291c18ac5d12dec5d0a21bfbea002c56cb8ba [file] [log] [blame]
// +build ignore
package H1
import "go/ast"
func example() {
_ = ast.BadExpr{From: 123, To: 456} // no match
_ = ast.BadExpr{123, 456} // match
_ = ast.BadExpr{From: 123} // no match
_ = ast.BadExpr{To: 456} // no match
}