Sign in
go
/
tools
/
58ba5e40628e14340bd0b3d5e3eada78d8dc42d1
/
.
/
refactor
/
eg
/
testdata
/
G1.golden
blob: ba3704c4210bcba98722950ca40f953d030606f9 [
file
] [
log
] [
blame
]
package
G1
import
"go/ast"
func example
()
{
_
=
ast
.
BadExpr
{
123
,
456
}
// match
_
=
ast
.
BadExpr
{
123
,
456
}
// no match
_
=
ast
.
BadExpr
{
From
:
123
}
// no match
_
=
ast
.
BadExpr
{
To
:
456
}
// no match
}