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