mirror of
https://github.com/php/php-src.git
synced 2024-11-29 12:53:37 +08:00
13 lines
169 B
PHP
13 lines
169 B
PHP
--TEST--
|
|
errmsg: cannot redeclare class
|
|
--FILE--
|
|
<?php
|
|
|
|
class stdclass {
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot redeclare class stdclass in %s on line %d
|