xref: /PHP-5.5/Zend/tests/037.phpt (revision e0625942)
1--TEST--
2Trying to access inexistent static property of Closure
3--FILE--
4<?php
5
6namespace closure;
7
8class closure { static $x = 1;}
9
10$x = __NAMESPACE__;
11var_dump(closure::$x);
12
13var_dump($x::$x);
14
15?>
16--EXPECTF--
17int(1)
18
19Fatal error: Access to undeclared static property: Closure::$x in %s on line %d
20