summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/bug78014.inc
blob: 51a11964761461578edbc8012d806e4788dc58c6 (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; }
}