1--TEST--
2Defining a free-standing assert() function is deprecated
3--FILE--
4<?php
5
6namespace FooBar;
7
8function assert() {}
9
10?>
11--EXPECTF--
12Deprecated: Defining a custom assert() function is deprecated, as the function has special semantics in %s on line %d
13