php-src/Zend/tests/037.phpt

20 lines
299 B
Plaintext
Raw Normal View History

2008-07-28 14:09:00 +00:00
--TEST--
Trying to access inexistent static property of Closure
--FILE--
<?php
namespace closure;
class closure { static $x = 1;}
$x = __NAMESPACE__;
var_dump(closure::$x);
var_dump($x::$x);
?>
--EXPECTF--
int(1)
Fatal error: Access to undeclared static property: Closure::$x in %s on line %d