9 lines
209 B
PHP
9 lines
209 B
PHP
--TEST--
|
|
Error message for isset(func())
|
|
--FILE--
|
|
<?php
|
|
isset(1 + 1);
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use isset() on the result of an expression (you can use "null !== expression" instead) in %s on line %d
|