mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
17 lines
303 B
PHP
17 lines
303 B
PHP
--TEST--
|
|
Test constants with default values based on other constants.
|
|
--FILE--
|
|
<?php
|
|
class C
|
|
{
|
|
const CONST_2 = self::CONST_1;
|
|
const CONST_1 = self::BASE_CONST;
|
|
const BASE_CONST = 'hello';
|
|
}
|
|
var_dump(C::CONST_1, C::CONST_2);
|
|
?>
|
|
--EXPECTF--
|
|
string(5) "hello"
|
|
string(5) "hello"
|
|
|