mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-12 09:29:47 +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++);
|