1#################################################
2# name: register
3# purpose: test registration functions
4# expect: TEST::FORMAT
5# options: -rr
6#################################################
7#[Registered test_function]
8#array(5) {
9#  [0]=>
10#  int(1)
11#  [1]=>
12#  int(2)
13#  [2]=>
14#  int(3)
15#  [3]=>
16#  int(4)
17#  [4]=>
18#  int(5)
19#}
20#################################################
21<:
22function test_function() {
23	var_dump(func_get_args());
24}
25:>
26R test_function
27test_function 1 2 3 4 5
28q
29