summaryrefslogtreecommitdiff
path: root/Examples/test-suite/go/template_rename_runme.go
blob: 08cf3fb48a3f00c7e20d29e9460b6d2d6e0a4657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package main

import "swigtests/template_rename"

func main() {
	i := template_rename.NewIFoo()
	d := template_rename.NewDFoo()

	_ = i.Blah_test(4)
	_ = i.Spam_test(5)
	_ = i.Groki_test(6)

	_ = d.Blah_test(7)
	_ = d.Spam(8)
	_ = d.Grok_test(9)
}