Branch: Tag:

1998-02-11

1998-02-11 00:56:20 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Added one more test.

Rev: src/testsuite.in:1.72

1: - test_true([["$Id: testsuite.in,v 1.71 1998/02/10 14:38:06 grubba Exp $"]]) + test_true([["$Id: testsuite.in,v 1.72 1998/02/11 00:56:20 grubba Exp $"]])   test_eq(1e1,10.0)   test_eq(1E1,10.0)   test_eq(1e+1,10.0)
32:   test_eval_error([[return column(({0}),"foo");]])      test_any([[ + class A { constant a=0; int foo() { return a; } }; + class B { inherit A; constant a=1; }; + return B()->foo(); ]], 1) +  + test_any([[   class p1 { int foo() { return 1; }};   class p2 { int foo() { return 3; }};   class c1 { inherit p1; inherit p2; int foo() { return p1::foo()+p2::foo(); }};