git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12108 626c5289-ae23-0410-ae9c-e8d60b6d4f22
17 lines
170 B
Go
17 lines
170 B
Go
package main
|
|
|
|
import . "./naturalvar"
|
|
|
|
func main() {
|
|
f := NewFoo()
|
|
b := NewBar()
|
|
|
|
b.SetF(f)
|
|
|
|
SetS("hello")
|
|
b.SetS("hello")
|
|
|
|
if b.GetS() != GetS() {
|
|
panic(0)
|
|
}
|
|
}
|