1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/Zend/tests/instanceof_const.phpt
2017-12-19 22:16:45 +01:00

11 lines
126 B
PHP

--TEST--
Instanceof on literals returns false
--FILE--
<?php
var_dump("abc" instanceof stdclass);
?>
--EXPECT--
bool(false)