pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2000-01-07
2000-01-07 04:19:53 by Martin Stjernholm <mast@lysator.liu.se>
68cf01153b190d54d88f18e32bc9d43644446992 (
10
lines) (+
9
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added a test for function prototype handling.
Rev: src/testsuite.in:1.260
1:
-
test_true([["$Id: testsuite.in,v 1.
259
2000/01/
04
18
:
32
:
50
grubba
Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
260
2000/01/
07
04:
19
:
53
mast
Exp $"]]);
cond([[all_constants()->_verify_internals]], [[
612:
return o->i; ]],99)
+
test_any([[
+
class A {int foo() {return bar();} int bar();};
+
class B {int bar() {return 1;}};
+
class C {inherit A; inherit B; int bar() {return B::bar();}};
+
return C()->foo();
+
]], 1)
+
test_compile_any([[ class X { void hej() {} } class Y { inherit X:banan; void hopp() { banan::hej(); } }