mirror of
https://github.com/php/php-src.git
synced 2025-01-09 20:44:33 +08:00
13 lines
261 B
PHP
13 lines
261 B
PHP
--TEST--
|
|
Block pass: Bugs in BOOL/QM_ASSIGN elision
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
(bool) (true ? $x : $y);
|
|
(bool) (true ? new stdClass : null);
|
|
(bool) new stdClass;
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Undefined variable: x in %s on line %d
|