1--TEST--
2Bug GH-7757 (Multi-inherited final constant causes fatal error)
3--FILE--
4<?php
5interface EntityInterface {
6    final public const TEST = 'this';
7}
8
9interface KeyInterface extends EntityInterface {
10}
11
12interface StringableInterface extends EntityInterface {
13}
14
15class SomeTestClass implements KeyInterface, StringableInterface {
16}
17?>
18--EXPECT--
19