php-src/tests/classes/constants_visibility_005.phpt
Ilija Tovilo adfdfb2e1e
Improvements in modifier parsing (#9926)
Use a shared non-terminal for all class modifiers. This avoids conflicts when
adding modifiers that are only valid for certain targets. This change is
necessary for asymmetric visibility but might be useful for other future
additions.

Closes GH-9926
2022-11-17 16:20:27 +01:00

11 lines
189 B
PHP

--TEST--
Static constants are not allowed
--FILE--
<?php
class A {
static const X = 1;
}
?>
--EXPECTF--
Fatal error: Cannot use the static modifier on a class constant in %s on line %d