summaryrefslogtreecommitdiff
path: root/Zend/tests/this_as_static.phpt
blob: f094449c12dd792e37ac40c5d31301d3a389d391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
$this as static variable
--FILE--
<?php
function foo() {
	static $this;
	var_dump($this);
}
foo();
?>
--EXPECTF--
Fatal error: Cannot use $this as static variable in %sthis_as_static.php on line 3