1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/tests/classes/constants_error_004.phpt
Jani Taskinen 52f160cae9 - Fixed tests
2010-02-13 01:08:04 +00:00

14 lines
235 B
PHP

--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: Undefined class constant 'D::hello' in %s on line %d