1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/opcache/tests/bug78014.inc
2020-02-03 22:52:20 +01:00

12 lines
173 B
PHP

<?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; }
}