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