php-src/tests/classes/constants_basic_005.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

16 lines
302 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);
?>
--EXPECT--
string(5) "hello"
string(5) "hello"