1--TEST--
2Internal static methods should not be confused with global functions
3--SKIPIF--
4<?php
5if (!extension_loaded('zend-test')) die('skip requires zend-test');
6?>
7--FILE--
8<?php
9
10var_dump(is_bool(_ZendTestClass::is_object()));
11
12?>
13--EXPECT--
14bool(false)
15