Files
ANSLibs/swig-4.3.0/Examples/test-suite/go/extend_template_runme.go

15 lines
176 B
Go
Raw Normal View History

package main
import "swigtests/extend_template"
func main() {
f := extend_template.NewFoo_0()
if f.Test1(37) != 37 {
panic(0)
}
if f.Test2(42) != 42 {
panic(0)
}
}