mirror of
https://github.com/php/php-src.git
synced 2026-03-27 17:52:16 +01:00
11 lines
184 B
PHP
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
|