From e025b08fa996ac9b66c50a3be1d164d91782ca67 Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Tue, 8 Feb 2000 12:02:28 +0100 Subject: [PATCH] Corrected wrongthinking in my test for __INIT(). Rev: src/testsuite.in:1.273 --- src/testsuite.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/testsuite.in b/src/testsuite.in index b309975a30..aac3573fd2 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(); ]]) -- GitLab