Sign in
go
/
tools
/
124c33da39cb0efa75a7d8cbdd4511910b153a49
/
.
/
refactor
/
eg
/
testdata
/
G1.golden
blob: c93c53fc3b039746eadccfbbb3d6518d8ecc9b3e [
file
]
// +build ignore
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
}