php-src/Zend/tests/unset_cast_deprecated.phpt
Nikita Popov 7a73c5f6bb Deprecate (unset)
Pecularily, there wasn't a single test for the (unset) cast...
2017-02-03 18:52:57 +01:00

15 lines
188 B
PHP

--TEST--
The (unset) cast is deprecated
--FILE--
<?php
$x = 1;
var_dump((unset) $x);
var_dump($x);
?>
--EXPECTF--
Deprecated: The (unset) cast is deprecated in %s on line %d
NULL
int(1)