21 lines
360 B
PHP
21 lines
360 B
PHP
--TEST--
|
|
#[\NoDiscard]: execute_ex overwritten
|
|
--EXTENSIONS--
|
|
zend_test
|
|
--INI--
|
|
zend_test.replace_zend_execute_ex=1
|
|
opcache.jit=disable
|
|
--FILE--
|
|
<?php
|
|
|
|
#[\NoDiscard]
|
|
function test(): int {
|
|
return 0;
|
|
}
|
|
|
|
test();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: The return value of function test() should either be used or intentionally ignored by casting it as (void) in %s on line %d
|