1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/Zend/tests/assert/expect_019.phpt

19 lines
287 B
PHP

--TEST--
test assertions in namespace (assertions completely disabled)
--INI--
zend.assertions=-1
--FILE--
<?php
namespace Foo;
var_dump(\assert(false));
var_dump(\assert(true));
var_dump(assert(false));
var_dump(assert(true));
?>
--EXPECT--
bool(true)
bool(true)
bool(true)
bool(true)