pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2000-02-09
2000-02-09 18:52:12 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
f73a7bf363538240c8cd4d7ee3e3324226da1581 (
8
lines) (+
7
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
fixed a non-constant propagation bug
Rev: src/las.c:1.161
Rev: src/testsuite.in:1.274
1:
dnl -*- Pike -*-
-
test_true([["$Id: testsuite.in,v 1.
273
2000/02/
08
11
:
02
:
28
mast
Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
274
2000/02/
09
18
:
52
:
12
hubbe
Exp $"]]);
cond([[all_constants()->_verify_internals]], [[
137:
} }()->C()->D()->bonk_me()]],"oiff")
+
test_compile_error([[
+
class A { constant q = "x"; }
+
class B { inherit A; string z="z"; constant q="x"+z; }
+
]])
-
+
test_do([[ class Foo {