pike.git
/
src
/
testsuite.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/testsuite.in:1:
-
test_true([["$Id: testsuite.in,v 1.
668
2003/08/
10
19
:
32
:
01
nilsson
Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
669
2003/08/
18
14
:
12
:
05
mast
Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]]) test_compile_any([[#pike 7.4]]) test_compile_any([[#pike 7.0]]) test_compile_any([[#pike 0.6]]) cond([[all_constants()->_verify_internals]], [[ test_do(_verify_internals())
pike.git/src/testsuite.in:2416:
constant y = x+2.0; } } mixed a() { return 3.0 == B()->C()->y; } ]])
+
test_program_eq([[
+
constant x = X;
+
class X {constant c = "right";}
-
+
constant y = Y;
+
class Y {constant c = "wrong";}
+
+
string a()
+
{
+
return ::`[]("x")->c;
+
}
+
]], "right")
+
+
dnl Come back when we decide that this should be possible dnl test_do([[ dnl class A { dnl constant i = 5; dnl }; dnl class B { dnl inherit A; dnl int i = 17; dnl }; dnl B();