swig/Examples/test-suite/go/imports_runme.go
2010-06-10 01:13:31 +00:00

17 lines
228 B
Go

// This is the import runtime testcase.
package main
import "imports_b"
import "imports_a"
func main() {
x := imports_b.NewB()
x.Hello()
_ = imports_a.NewA()
c := imports_b.NewC()
_ = c.Get_a(c)
_ = c.Get_a_type(c)
}