diff --git a/src/testsuite.in b/src/testsuite.in index b309975a306d8b5f3c9e5b594686c86ff814c202..aac3573fd2cabe403330a4203113bbcf90554577 100644 --- a/src/testsuite.in +++ b/src/testsuite.in @@ -1,5 +1,5 @@ dnl -*- Pike -*- -test_true([["$Id: testsuite.in,v 1.272 2000/02/08 04:20:35 mast Exp $"]]); +test_true([["$Id: testsuite.in,v 1.273 2000/02/08 11:02:28 mast Exp $"]]); cond([[all_constants()->_verify_internals]], [[ @@ -448,11 +448,11 @@ test_compile_error_low([[ test_do([[ class A { - int i = 17; + constant i = 5; }; class B { inherit A; - constant i = 5; + int i = 17; }; B(); ]])