php-src/Zend/tests/bug41633_2.phpt

12 lines
245 B
Plaintext
Raw Normal View History

--TEST--
Bug #41633.2 (Undefined class constants must not be substituted by strings)
--FILE--
<?php
class Foo {
const A = self::B;
}
echo Foo::A."\n";
?>
--EXPECTF--
2008-12-04 20:12:30 +00:00
Fatal error: Undefined class constant 'self::B' in %sbug41633_2.php on line 5