Sign in
◑
Theme
go
/
tools
/
e34a3dafd1b4f2e5607a8acb3c9d9f0156f1b088
/
.
/
refactor
/
eg
/
testdata
/
G1.go
blob: 07aaff916c746875b50e746ebadf5cd6e2461083 [
file
]
// +build ignore
package G1
import "go/ast"
func example() {
_ = ast.BadExpr{From: 123, To: 456}
// match
_ = ast.BadExpr{123, 456}
// no match
_ = ast.BadExpr{From: 123}
// no match
_ = ast.BadExpr{To: 456}
// no match
}