blob: 8b363f297a7c56f28cbd0027299c9ba9f025b178 [file] [log] [blame]
return_const_value
p = return_const_value.Foo_ptr.getPtr();
if (p.getVal() != 17)
error("Runtime test1 failed. p.getVal()=", p.getVal())
endif
p = return_const_value.Foo_ptr.getConstPtr();
if (p.getVal() != 17)
error("Runtime test2 failed. p.getVal()=", p.getVal())
endif