mirror of
https://github.com/php/php-src.git
synced 2024-12-21 16:00:18 +08:00
13 lines
256 B
PHP
13 lines
256 B
PHP
--TEST--
|
|
Defining a free-standing assert() function is deprecated
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace FooBar;
|
|
|
|
function assert() {}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Defining a custom assert() function is deprecated, as the function has special semantics in %s on line %d
|