Branch: Tag:

2016-11-29

2016-11-29 17:31:38 by Martin Nilsson <nilsson@fastmail.com>

Fixed a few test errors.

4500:   test_any([[mixed a=({([]),0}); a[1]=a; return a->foo[0];]],0)   test_eval_error([[return column(({0}),"foo");]])    - test_equal([[ ({ })->foo ]], ({ })) + test_equal([[ ((mixed)({ }))->foo ]], ({ })) + test_compile_error([[ ({})->foo; ]])   test_equal([[ `->(({ }), "foo") ]], ({ })) - test_equal([[ ({ })["foo"] ]], ({ })) + test_equal([[ ((mixed)({ }))["foo"] ]], ({ })) + test_compile_error([[ ({})["foo"]; ]])      test_any([[   class A { constant a=0; int foo() { return a; } };