--TEST--
Operator precedence
--FILE--
<?php /* $Id$ */

var_dump((object)instanceof stdClass);
var_dump(! (object)instanceof Exception);

?>
--EXPECT--
bool(true)
bool(true)