
| Path : /usr/src/php/tests/classes/ |
| Current File : //usr/src/php/tests/classes/constants_error_004.phpt |
--TEST--
Class constant whose initial value refereces a non-existent class
--FILE--
<?php
class C
{
const c1 = D::hello;
}
$a = new C();
?>
--EXPECTF--
Fatal error: Class 'D' not found in %s on line %d