php-src/Zend/tests/real_cast_deprecation.phpt
2019-07-22 11:39:52 +02:00

12 lines
182 B
PHP

--TEST--
The (real) cast is deprecated
--FILE--
<?php
var_dump((real) 42);
?>
--EXPECTF--
Deprecated: The (real) cast is deprecated, use (float) instead in %s on line %d
float(42)