mirror of
https://github.com/php/php-src.git
synced 2024-12-22 08:20:23 +08:00
11 lines
166 B
Plaintext
11 lines
166 B
Plaintext
|
--TEST--
|
||
|
Cannot use special class name as namespace
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
namespace self;
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: Cannot use 'self' as namespace name in %s on line %d
|