pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2000-03-30
2000-03-30 19:43:01 by Henrik Grubbström (Grubba) <grubba@grubba.org>
099be6351ac1cd5f3e854de2959566a2948190e4 (
15
lines) (+
14
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added a few tests of function-type syntax.
Rev: src/testsuite.in:1.291
1:
-
test_true([["$Id: testsuite.in,v 1.
290
2000/03/30
09
:
54
:
18
hubbe
Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
291
2000/03/30
19
:
43
:
01
grubba
Exp $"]]);
cond([[all_constants()->_verify_internals]], [[
130:
mapping(int:string) foo = ([FOO: "foo"]); ]])
+
test_compile_any([[
+
function(...:int) foo;
+
]]);
+
+
test_compile_any([[
+
function(,...:int) foo;
+
]]);
+
+
test_compile_any([[
+
function(string,...:int) foo;
+
]]);
+
test_any([[return class Z { string bonk() { return "oiff"; }