aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/go/rename_scope_runme.go
blob: 4ad7549add99e1a5195131bb53bed2f4d0b31499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package main

import . "swigtests/rename_scope"

func main() {
	a := NewNatural_UP()
	b := NewNatural_BP()

	if a.Rtest() != 1 {
		panic(0)
	}

	if b.Rtest() != 1 {
		panic(0)
	}

	_ = Equals
}