Created
October 19, 2015 17:43
-
-
Save awly/01827c63677707104ab1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// src/fmt/foo.go | |
package fmt | |
import "internal/foo" | |
var _ = foo.Foo{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// src/internal/foo/foo.go | |
package foo | |
type Foo struct{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ go build -v -a fmt | |
runtime | |
internal/foo | |
errors | |
sync/atomic | |
math | |
unicode/utf8 | |
sync | |
io | |
syscall | |
strconv | |
time | |
reflect | |
os | |
fmt | |
$ echo $? | |
0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment