php-src/Zend/tests/bug41633_4.phpt

13 lines
184 B
Plaintext
Raw Normal View History

--TEST--
Bug #41633.4 (self:: doesn't work for constants)
--FILE--
<?php
class Foo {
2020-02-03 21:52:20 +00:00
const A = self::B;
const B = "ok";
}
var_dump(defined("Foo::A"));
?>
--EXPECT--
bool(true)