ru_php/tests/classes/constants_visibility_005.phpt

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