We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14af921 commit d39e7c2Copy full SHA for d39e7c2
go/ql/test/query-tests/definitions/definitions.expected
@@ -1,3 +1,4 @@
1
+| greet.go:6:2:6:6 | myfmt | greet.go:3:8:3:12 | myfmt | V |
2
| main.go:6:26:6:28 | who | main.go:5:12:5:14 | who | V |
3
| main.go:11:2:11:6 | greet | main.go:5:6:5:10 | greet | V |
4
| main.go:11:8:11:12 | world | main.go:10:2:10:6 | world | V |
go/ql/test/query-tests/definitions/greet.go
@@ -1,7 +1,7 @@
package main
-import "fmt"
+import myfmt "fmt"
5
func greet2() {
6
- fmt.Println("Hello world!")
+ myfmt.Println("Hello world!")
7
}
0 commit comments