mirror of
https://github.com/php/php-src.git
synced 2024-12-12 11:23:53 +08:00
21 lines
325 B
Plaintext
21 lines
325 B
Plaintext
|
--TEST--
|
||
|
Bug #63976 (Parent class incorrectly using child constant in class property)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
if (1) {
|
||
|
class Foo {
|
||
|
const TABLE = "foo";
|
||
|
public $table = self::TABLE;
|
||
|
}
|
||
|
}
|
||
|
if (1) {
|
||
|
class Bar extends Foo {
|
||
|
const TABLE = "bar";
|
||
|
}
|
||
|
}
|
||
|
$bar = new Bar();
|
||
|
var_dump($bar->table);
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
string(3) "foo"
|