Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/go/preproc_runme.go
2019-08-04 21:38:19 -05:00

22 lines
235 B
Go

package main
import "preproc"
func main() {
if preproc.GetEndif() != 1 {
panic(0)
}
if preproc.GetDefine() != 1 {
panic(0)
}
if preproc.GetDefined() != 1 {
panic(0)
}
if 2*preproc.One != preproc.Two {
panic(0)
}
}