xref: /php-src/Zend/tests/this_as_global.phpt (revision f8d79582)
1--TEST--
2$this as global variable
3--FILE--
4<?php
5function foo() {
6    global $this;
7    var_dump($this);
8}
9foo();
10?>
11--EXPECTF--
12Fatal error: Cannot use $this as global variable in %sthis_as_global.php on line 3
13