blob: 46300abf40600483107d9935638ff0b4eda25eff (
plain)
1
2
3
4
5
6
7
8
9
10
|
--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
|