1--TEST--
2Block pass: Bugs in BOOL/QM_ASSIGN elision
3--SKIPIF--
4<?php require_once('skipif.inc'); ?>
5--FILE--
6<?php
7(bool) (true ? $x : $y);
8(bool) (true ? new stdClass : null);
9(bool) new stdClass;
10?>
11--EXPECTF--
12Notice: Undefined variable: x in %s on line %d
13