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
2018-03-12 13:53:06 -07:00

20 lines
174 B
Go

package app
import _ "lib/Foo"
import . "lib/Bar"
import m "lib/Math"
import "lib/Math"
import (
"net/http"
)
func foo() {}
func main() {
foo()
m.Sin()
Math.Sin()
}