mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
14 lines
231 B
PHP
Executable File
14 lines
231 B
PHP
Executable File
--TEST--
|
|
077: Unknown compile-time constants in namespace
|
|
--FILE--
|
|
<?php
|
|
namespace foo;
|
|
|
|
function foo($a = array(\unknown => unknown))
|
|
{
|
|
}
|
|
|
|
foo();
|
|
--EXPECTF--
|
|
Fatal error: Undefined constant 'unknown' in %sns_077_%d.php on line %d
|