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

21 lines
229 B
Go
Raw Normal View History

package main
import . "swigtests/smart_pointer_multi"
func main() {
f := NewFoo()
b := NewBar(f)
s := NewSpam(b)
g := NewGrok(b)
s.SetX(3)
if s.Getx() != 3 {
panic(0)
}
g.SetX(4)
if g.Getx() != 4 {
panic(0)
}
}