mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
12 lines
173 B
PHP
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; }
|
|
}
|