blob: 790921b746c518a959b92319a896199a45f77670 [file] [log] [blame]
package main
import "./return_const_value"
func main() {
p := return_const_value.Foo_ptrGetPtr()
if p.GetVal() != 17 {
panic("Runtime test1 failed")
}
p = return_const_value.Foo_ptrGetConstPtr()
if p.GetVal() != 17 {
panic("Runtime test2 failed")
}
}