pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2017-09-09
2017-09-09 18:18:33 by Martin Nilsson <nilsson@fastmail.com>
493913ea3787b0f06bdeb61cd49582f2743267e6 (
15
lines) (+
15
/-
0
)
[
Show
|
Annotate
]
Branch:
8.1
Test case and CHANGES for void changes.
3233:
return Test()->bar; ]], 0)
+
test_compile_error([[
+
class {
+
int a() { }
+
void b() { return a(); }
+
}
+
]])
+
+
test_do([[
+
class {
+
void a() { }
+
void b() { return a(); }
+
}
+
]])
+
test_any([[string gurk="bozo"; string b(int x) { return (x?b(x-1)+gurk:""); }; return b(5)]],[["bozo"*5]]) dnl this should really work...