blob: a67ae407bcb23177a1e09548aaf4c5b1777b624b [file] [log] [blame]
// This is the import runtime testcase.
package main
import "swigtests/imports_b"
import "swigtests/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)
}