mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
15 lines
238 B
Plaintext
15 lines
238 B
Plaintext
|
--TEST--
|
||
|
Cannot declare class, because the name is already in use
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
function test() {
|
||
|
class A {}
|
||
|
}
|
||
|
test();
|
||
|
test();
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: Cannot declare class A, because the name is already in use in %s on line %d
|