mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
14 lines
220 B
PHP
14 lines
220 B
PHP
--TEST--
|
|
Class constant whose initial value references 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
|