1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 05:51:02 +02:00
Files
archived-php-src/Zend/tests/attributes/019_variable_attribute_name.phpt
Nikita Popov 7a3dcc3e33 Treat namespaced names as single token
Namespace names are now lexed as single tokens of type
T_NAME_QUALIFIED, T_NAME_FULLY_QUALIFIED or T_NAME_RELATIVE.

RFC: https://wiki.php.net/rfc/namespaced_names_as_token

Closes GH-5827.
2020-07-22 12:36:05 +02:00

12 lines
164 B
PHP

--TEST--
Attribute name cannot be a variable
--FILE--
<?php
<<$x>>
class A {}
?>
--EXPECTF--
Parse error: syntax error, unexpected variable "$x" in %s on line %d