git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12108 626c5289-ae23-0410-ae9c-e8d60b6d4f22
30 lines
337 B
Go
30 lines
337 B
Go
package main
|
|
|
|
import "fmt"
|
|
import . "./smart_pointer_member"
|
|
|
|
func main() {
|
|
f := NewFoos()
|
|
f.SetY(1)
|
|
|
|
if f.GetY() != 1 {
|
|
panic(0)
|
|
}
|
|
|
|
b := NewBar(f)
|
|
b.SetY(2)
|
|
|
|
if f.GetY() != 2 {
|
|
fmt.Println(f.GetY())
|
|
fmt.Println(b.GetY())
|
|
panic(0)
|
|
}
|
|
|
|
if b.GetX() != f.GetX() {
|
|
panic(0)
|
|
}
|
|
|
|
if b.GetZ() != GetFoosZ() {
|
|
panic(0)
|
|
}
|
|
}
|