Sign in
go
/
tools
/
9ac8e33b364013c87ce70b51928d01d52c302476
/
.
/
refactor
/
eg
/
testdata
/
H1.golden
blob: a1e5961264ecc00af2c5b25ec10e8f597f00fd50 [
file
] [
log
] [
blame
]
// +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
}