summaryrefslogtreecommitdiff
path: root/Zend/tests/bug27304.phpt
blob: 51e392d59b8dd7bd999f5bca4a57a027e6c66282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
Bug #27304
--FILE--
<?php

class Staticexample
{
	static function test()
	{
		var_dump(isset($this));
	}
}

$b = new Staticexample();
Staticexample::test();
$b->test();
        
?>
===DONE===
--EXPECT--
bool(false)
bool(false)
===DONE===