swig/Examples/test-suite/go/using_protected_runme.go

13 lines
143 B
Go

package main
import . "swigtests/using_protected"
func main() {
f := NewFooBar()
f.SetX(3)
if f.Blah(4) != 4 {
panic("blah(int)")
}
}