summaryrefslogtreecommitdiff
path: root/Examples/test-suite/go/fvirtual_runme.go
blob: 01b94f419ffd78a50e1a73acb63801d145549123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package main

import . "swigtests/fvirtual"

func main() {
	sw := NewNodeSwitch()
	n := NewNode()
	i := sw.AddChild(n)

	if i != 2 {
		panic("addChild")
	}
}