summaryrefslogtreecommitdiff
path: root/tests/classes/constants_visibility_007.phpt
blob: 37b52855869a1769c9ec909a3395a921cf7eaee4 (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Final constants are not allowed
--FILE--
<?php
class A {
    final const X = 1;
}
?>
--EXPECTF--
Fatal error: Cannot use 'final' as constant modifier in %s on line 3