pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2016-11-29
2016-11-29 17:31:38 by Martin Nilsson <nilsson@fastmail.com>
bb0f715c008b59c9e5a0c34f04af8dfc38ad2523 (
7
lines) (+
5
/-
2
)
[
Show
|
Annotate
]
Branch:
8.1
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; } };