summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/bug78014.inc
blob: aed61ab743f38c3b04c2e9d92f46cd18424eadd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
class A {
    function foo() { return 0; }
}
class B extends A {
    const X = UNRESOLVED;
}
class C extends B {
    const X = 42;
    function foo() { return 42; }
}