mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
12 lines
178 B
PHP
12 lines
178 B
PHP
--TEST--
|
|
Operator precedence
|
|
--FILE--
|
|
<?php /* $Id$ */
|
|
|
|
var_dump((object)1 instanceof stdClass);
|
|
var_dump(! (object)1 instanceof Exception);
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|