mirror of https://github.com/swig/swig
14 lines
294 B
Go
14 lines
294 B
Go
package main
|
|
|
|
import . "swigtests/cpp_static"
|
|
|
|
func main() {
|
|
StaticFunctionTestStatic_func()
|
|
StaticFunctionTestStatic_func_2(1)
|
|
StaticFunctionTestStatic_func_3(1, 2)
|
|
SetStaticMemberTestStatic_int(10)
|
|
if GetStaticMemberTestStatic_int() != 10 {
|
|
panic(GetStaticMemberTestStatic_int())
|
|
}
|
|
}
|