Browse source code
File: / tests/ PHP/ Depend/ _code/ bugs/ 094/ testParserHandlesClosureThatReturnsReference.php
- Type
-
text/plain
- Last Author
- mapi
- Version
- 962
| Line | Rev. | Author | Source | |
|---|---|---|---|---|
| 1 | 962 | mapi | <?php | |
| 2 | ↓ | mapi | function foo() | |
| 3 | ↓ | mapi | { | |
| 4 | ↓ | mapi | $x = function&($y) { | |
| 5 | ↓ | mapi | return $y; | |
| 6 | ↓ | mapi | }; | |
| 7 | ↓ | mapi | var_dump($x(42)); | |
| 8 | ↓ | mapi | } | |
| 9 | ↓ | mapi | foo(); | |