blob: 8a14dcf9b3734f499851a72fd01e981bd81f5ba7 [file] [log] [blame]
package main
import . "swigtests/smart_pointer_simple"
func main() {
f := NewFoo()
b := NewBar(f)
b.SetX(3)
if b.Getx() != 3 {
panic(0)
}
fp := b.X__deref__()
fp.SetX(4)
if fp.Getx() != 4 {
panic(0)
}
}