php-parser/test/code/parser/expr/uvs/globalNonSimpleVarError.test

18 lines
363 B
Plaintext
Raw Normal View History

2015-06-13 15:42:09 +02:00
Non-simple variables are forbidden in PHP 7
-----
<?php
global $$foo->bar;
-----
!!php7
Syntax error, unexpected T_OBJECT_OPERATOR, expecting ',' or ';' from 2:13 to 2:14
array(
2017-01-19 22:25:22 +01:00
0: Stmt_Expression(
expr: Expr_ConstFetch(
name: Name(
parts: array(
0: bar
)
2015-06-13 15:42:09 +02:00
)
)
)
2017-01-19 22:25:22 +01:00
)