1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 14:54:16 +03:00
semantic/test/fixtures/go/import-graph/main.go

14 lines
89 B
Go

package app
import "os"
import (
"net/http"
)
func foo() {}
func main() {
foo()
}