1
1
mirror of https://github.com/github/semantic.git synced 2024-11-29 11:02:26 +03:00
semantic/test/fixtures/go/import-graph/main.go

20 lines
174 B
Go
Raw Normal View History

package app
2018-03-09 00:01:13 +03:00
import _ "lib/Foo"
import . "lib/Bar"
import m "lib/Math"
import "lib/Math"
import (
"net/http"
)
func foo() {}
func main() {
2018-03-12 23:53:06 +03:00
foo()
2018-03-09 00:01:13 +03:00
2018-03-12 23:53:06 +03:00
m.Sin()
Math.Sin()
}