mirror of
https://github.com/php/php-src.git
synced 2026-04-18 13:31:27 +02:00
11 lines
212 B
PHP
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
|