1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 17:52:16 +01:00
Files
archived-php-src/tests/classes/constants_visibility_006.phpt
2020-02-03 22:52:20 +01:00

11 lines
184 B
PHP

--TEST--
Abstract constants are not allowed
--FILE--
<?php
class A {
abstract const X = 1;
}
?>
--EXPECTF--
Fatal error: Cannot use 'abstract' as constant modifier in %s on line 3