php-src/Zend/tests/bug41633_2.phpt
2007-08-24 13:50:52 +00:00

12 lines
239 B
PHP
Executable File

--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--
Fatal error: Undefined class constant 'B' in %sbug41633_2.php on line 5