Files

18 lines
178 B
Go
Raw Permalink Normal View History

package main
import . "swigtests/naturalvar"
func main() {
f := NewFoo()
b := NewBar()
b.SetF(f)
SetS("hello")
b.SetS("hello")
if b.GetS() != GetS() {
panic(0)
}
}