blob: a8ec39f540ab3781f5f558372c1b315b1d4ce30e [file] [log] [blame]
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)
}
}