From 021a2de1440437f28c0351a031ae65e26763f790 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Sat, 6 Oct 2007 15:33:02 +0200
Subject: [PATCH] Bugfix.

Rev: src/testsuite.in:1.788
---
 src/testsuite.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/testsuite.in b/src/testsuite.in
index 161e6db88a..10fb15dd02 100644
--- a/src/testsuite.in
+++ b/src/testsuite.in
@@ -1,5 +1,5 @@
 START_MARKER
-test_true([["$Id: testsuite.in,v 1.787 2007/10/06 13:32:37 grubba Exp $"]]);
+test_true([["$Id: testsuite.in,v 1.788 2007/10/06 13:33:02 grubba Exp $"]]);
 
 // This triggered a bug only if run sufficiently early.
 test_compile_any([[#pike 7.2]])
@@ -3620,7 +3620,7 @@ class X {
  static class gazonk { void create() { f(); }};
   static class g { object e() { return gazonk(); }};
  void create() { g()->e(); }}; return objectp(X()); ]],1)
-test_any([[class A { int x=1; }; class B { protected inherit A; int foo() { return A::x; }}; return !B->x && B()->foo()==A()->x;]],1)
+test_any([[class A { int x=1; }; class B { protected inherit A; int foo() { return A::x; }}; return A()->x && !B()->x && B()->foo()==A()->x;]],1)
 test_any([[class C { int q() { return p(); } int p() { return 17; }}; return C()->q();]],17)
 test_any([[class C1 {
  class D { string id() { return "foo"; } };
-- 
GitLab