1--TEST--
2Intersection type and by-ref parameter parsing with comments
3--FILE--
4<?php
5
6class Test {
7    function f1(A & /*
8        Comment // ** / / * * **/ B $p) {}
9    function f2(A & // Comment
10        B $p) {}
11    function f3(A & # Comment
12        B $p) {}
13    function f4(A & #
14        B $p) {}
15    function f6(A & /*
16        Comment // ** / / * * **/ $p) {}
17    function f7(A & // Comment
18        $p) {}
19    function f8(A & # Comment
20        $p) {}
21    function f9(A & #
22        $p) {}
23}
24
25?>
26--EXPECT--
27