...

Text file src/golang.org/x/tools/refactor/eg/testdata/H1.golden

Documentation: golang.org/x/tools/refactor/eg/testdata

     1package H1
     2
     3import "go/ast"
     4
     5func example() {
     6	_ = ast.BadExpr{From: 123, To: 456} // no match
     7	_ = ast.BadExpr{From: 123, To: 456} // match
     8	_ = ast.BadExpr{From: 123}          // no match
     9	_ = ast.BadExpr{To: 456}            // no match
    10}

View as plain text