mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
13 lines
202 B
PHP
13 lines
202 B
PHP
--TEST--
|
|
errmsg: cannot redeclare class
|
|
--FILE--
|
|
<?php
|
|
|
|
class stdclass {
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot declare class stdclass, because the name is already in use in %s on line %d
|