git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12108 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
135 B
Go
12 lines
135 B
Go
package main
|
|
|
|
import . "./using_protected"
|
|
|
|
func main() {
|
|
f := NewFooBar()
|
|
f.SetX(3)
|
|
|
|
if f.Blah(4) != 4 {
|
|
panic("blah(int)")
|
|
}
|
|
}
|