Sign in
go
/
tools
/
73db347c3b7cb8dddf5cb12d7637682d56758cf4
/
.
/
refactor
/
eg
/
testdata
/
G1.golden
blob: c93c53fc3b039746eadccfbbb3d6518d8ecc9b3e [
file
] [
log
] [
blame
]
// +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
}