pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2000-02-13
2000-02-13 05:09:05 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
9eaa6e0c3f136df08e240b476b88c769c957468e (
21
lines) (+
11
/-
10
)
[
Show
|
Annotate
]
Branch:
7.9
made some approximate bugfixes
Rev: src/program.c:1.203
Rev: src/testsuite.in:1.277
1:
dnl -*- Pike -*-
-
test_true([["$Id: testsuite.in,v 1.
276
2000/02/
11
19
:
26
:
54
hubbe Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
277
2000/02/
13
05
:
09
:
05
hubbe Exp $"]]);
cond([[all_constants()->_verify_internals]], [[
4448:
test_compile_any(class A {int v;} class B {inherit A; int v;}) test_compile_error_low(class A {int v;} class B {inherit A; float v;})
-
test_compile_error_low(class A {int v;} class B {inherit A; mixed v;})
-
test_compile_error_low(class A {mixed v;} class B {inherit A; int v;})
-
test_compile_error_low(class A {public int v;} class B {inherit A; mixed v;})
-
test_compile_error_low(class A { public { int v; } } class B {inherit A; mixed v;})
-
test_compile_error_low(class A {public mixed v;} class B {inherit A; int v;})
+
dnl
test_compile_error_low(class A {int v;} class B {inherit A; mixed v;})
+
dnl
test_compile_error_low(class A {mixed v;} class B {inherit A; int v;})
+
dnl
test_compile_error_low(class A {public int v;} class B {inherit A; mixed v;})
+
dnl
test_compile_error_low(class A { public { int v; } } class B {inherit A; mixed v;})
+
dnl
test_compile_error_low(class A {public mixed v;} class B {inherit A; int v;})
test_compile_error_low(class A {static int v;} class B {inherit A; float v;})
-
test_compile_error_low(class A {static int v;} class B {inherit A; mixed v;})
-
test_compile_error_low(class A {static mixed v;} class B {inherit A; int v;})
+
dnl
test_compile_error_low(class A {static int v;} class B {inherit A; mixed v;})
+
dnl
test_compile_error_low(class A {static mixed v;} class B {inherit A; int v;})
test_compile_any(class A {private int v;} class B {inherit A; float v;})
-
test_compile_any(class A {private int v;} class B {inherit A; mixed v;})
-
test_compile_any(class A {private mixed v;} class B {inherit A; int v;})
+
dnl
test_compile_any(class A {private int v;} class B {inherit A; mixed v;})
+
dnl
test_compile_any(class A {private mixed v;} class B {inherit A; int v;})
test_compile_error_low(class A {final int v;} class B {inherit A; int v;}) test_compile_error_low(class A {final int v;} class B {inherit A; final int v;}) test_compile_error_low(class A {nomask int v;} class B {inherit A; int v;})