mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2025-01-09 06:08:24 +01:00
11 lines
209 B
Plaintext
11 lines
209 B
Plaintext
|
Parentheses for complex new/instanceof expressions
|
||
|
-----
|
||
|
<?php
|
||
|
new ('a' . 'b');
|
||
|
$x instanceof ('a' . 'b');
|
||
|
$x instanceof ($y++);
|
||
|
-----
|
||
|
!!php7
|
||
|
new ('a' . 'b')();
|
||
|
$x instanceof ('a' . 'b');
|
||
|
$x instanceof ($y++);
|