mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
9 lines
209 B
PHP
9 lines
209 B
PHP
--TEST--
|
|
Error message for isset(func())
|
|
--FILE--
|
|
<?php
|
|
isset(abc());
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use isset() on the result of an expression (you can use "null !== expression" instead) in %s on line %d
|