mirror of
https://github.com/golang/go
synced 2024-11-05 21:36:12 -07:00
9333b8f458
+ tests. Fixes issue golang/go#10923 Change-Id: I0813cdfbb447bbd9f579bb1998b355a3179a7e79 Reviewed-on: https://go-review.googlesource.com/10332 Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
13 lines
259 B
Plaintext
13 lines
259 B
Plaintext
// +build ignore
|
|
|
|
package H1
|
|
|
|
import "go/ast"
|
|
|
|
func example() {
|
|
_ = ast.BadExpr{From: 123, To: 456} // no match
|
|
_ = ast.BadExpr{From: 123, To: 456} // match
|
|
_ = ast.BadExpr{From: 123} // no match
|
|
_ = ast.BadExpr{To: 456} // no match
|
|
}
|