1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 13:31:27 +02:00
Files
archived-php-src/ext/opcache/tests/block_pass_001.phpt
2016-11-10 22:28:32 +01:00

11 lines
212 B
PHP

--TEST--
Block pass: Bugs in BOOL/QM_ASSIGN elision
--FILE--
<?php
(bool) (true ? $x : $y);
(bool) (true ? new stdClass : null);
(bool) new stdClass;
?>
--EXPECTF--
Notice: Undefined variable: x in %s on line %d