mirror of
https://github.com/php/php-src.git
synced 2024-12-13 20:05:26 +08:00
10 lines
204 B
PHP
10 lines
204 B
PHP
--TEST--
|
|
Function redeclaration must produce a simple fatal
|
|
--FILE--
|
|
<?php
|
|
function f() {}
|
|
function f() {}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot redeclare f() (previously declared in %s:%d) in %s on line %d
|