1// 2PACKAGE issue13742 3 4IMPORTPATH 5 testdata/issue13742 6 7IMPORTS 8 go/ast 9 10FILENAMES 11 testdata/issue13742.go 12 13FUNCTIONS 14 // Both F0 and G0 should appear as functions. 15 func F0(Node) 16 17 // Both F1 and G1 should appear as functions. 18 func F1(ast.Node) 19 20 // 21 func G0() Node 22 23 // 24 func G1() ast.Node 25 26