xref: /PHP-5.5/Zend/tests/isset_func_error.phpt (revision ec061a93)
1--TEST--
2Error message for isset(func())
3--FILE--
4<?php
5isset(abc());
6?>
7--EXPECTF--
8Fatal error: Cannot use isset() on the result of a function call (you can use "null !== func()" instead) in %s on line %d
9