1--TEST--
2Interface constants can be overridden directly
3--FILE--
4<?php
5
6interface I
7{
8    const X = 1;
9}
10
11class C implements I
12{
13    const X = 2;
14}
15
16?>
17--EXPECT--
18