Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/go/naturalvar_runme.go
2019-08-04 21:38:19 -05:00

18 lines
168 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)
}
}