summaryrefslogtreecommitdiff
path: root/Examples/test-suite/go/imports_runme.go
blob: a67ae407bcb23177a1e09548aaf4c5b1777b624b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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)
}