1--TEST--
2Static constants are not allowed
3--FILE--
4<?php
5class A {
6    static const X = 1;
7}
8?>
9--EXPECTF--
10Fatal error: Cannot use the static modifier on a class constant in %s on line %d
11