pike.git / src / testsuite.in

version» Context lines:

pike.git/src/testsuite.in:1: - test_true([["$Id: testsuite.in,v 1.657 2003/06/05 12:50:01 grubba Exp $"]]); + test_true([["$Id: testsuite.in,v 1.658 2003/06/06 21:01:30 marcus Exp $"]]);      // This triggered a bug only if run sufficiently early.   test_compile_any([[#pike 7.2]])   test_compile_any([[#pike 7.4]])   test_compile_any([[#pike 7.0]])   test_compile_any([[#pike 0.6]])      cond([[all_constants()->_verify_internals]],   [[    test_do(_verify_internals())
pike.git/src/testsuite.in:2395:    {    string hohum;    class C    {    inherit AScope.A;    }    }      ]])    + test_program([[ + class A + { +  constant x = 1.0; + } +  + class B + { +  inherit A; +  class C +  { +  constant y = x+2.0; +  } + } +  + mixed a() + { +  return 3.0 == B()->C()->y; + } + ]]) +  +    dnl Come back when we decide that this should be possible   dnl test_do([[   dnl class A {   dnl constant i = 5;   dnl };   dnl class B {   dnl inherit A;   dnl int i = 17;   dnl };   dnl B();