mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
14 lines
225 B
Plaintext
14 lines
225 B
Plaintext
|
--TEST--
|
||
|
077: Unknown compile-time constants in namespace
|
||
|
--FILE--
|
||
|
<?php
|
||
|
namespace foo;
|
||
|
|
||
|
function foo($a = array(0 => \unknown))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
foo();
|
||
|
--EXPECTF--
|
||
|
Fatal error: Undefined constant 'unknown' in %sns_077_%d.php on line %d
|