support std imports
parent
1fe0351517
commit
766bb47b82
@ -1,24 +1,43 @@
|
|||||||
garble build
|
garble build
|
||||||
exec ./main
|
exec ./main
|
||||||
cmp stderr main.stderr
|
cmp stdout main.stdout
|
||||||
|
|
||||||
|
! grep 'ImportedVar' main
|
||||||
|
! grep 'ImportedConst' main
|
||||||
|
! grep 'ImportedFunc' main
|
||||||
|
! grep 'ImportedType' main
|
||||||
|
|
||||||
-- go.mod --
|
-- go.mod --
|
||||||
module foo.com/main
|
module foo.com/main
|
||||||
-- main.go --
|
-- main.go --
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import "foo.com/main/imported"
|
import (
|
||||||
|
"fmt"
|
||||||
|
"foo.com/main/imported"
|
||||||
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
println(imported.ImportedVar)
|
fmt.Println(imported.ImportedVar)
|
||||||
println(imported.ImportedConst)
|
fmt.Println(imported.ImportedConst)
|
||||||
|
imported.ImportedFunc('x')
|
||||||
|
fmt.Println(imported.ImportedType(3))
|
||||||
|
fmt.Println(nil)
|
||||||
}
|
}
|
||||||
-- main.stderr --
|
-- main.stdout --
|
||||||
imported var value
|
imported var value
|
||||||
imported const value
|
imported const value
|
||||||
|
3
|
||||||
|
<nil>
|
||||||
-- imported/imported.go --
|
-- imported/imported.go --
|
||||||
package imported
|
package imported
|
||||||
|
|
||||||
var ImportedVar = "imported var value"
|
var ImportedVar = "imported var value"
|
||||||
|
|
||||||
const ImportedConst = "imported const value"
|
const ImportedConst = "imported const value"
|
||||||
|
|
||||||
|
func ImportedFunc(param rune) string {
|
||||||
|
return string(param)
|
||||||
|
}
|
||||||
|
|
||||||
|
type ImportedType int
|
||||||
|
Loading…
Reference in New Issue