mirror of
https://github.com/github/semantic.git
synced 2024-12-18 12:21:57 +03:00
11 lines
88 B
Go
11 lines
88 B
Go
package main
|
|
|
|
import "./foo"
|
|
import . "./bar"
|
|
|
|
func main() {
|
|
foo.New()
|
|
Bar()
|
|
Rab()
|
|
}
|