summaryrefslogtreecommitdiff
path: root/Zend/tests/bug39721.phpt
blob: 63edfc23ed06244712b0ed697e1f7220594a4474 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--TEST--
Bug #39721 (Runtime inheritance causes data corruption)
--FILE--
<?php
class test2 {
	private static $instances = 0;
	public $instance;
	
	public function __construct() {
		$this->instance = ++self::$instances;
	}
	 
}

$foo = new test2();

if (is_object($foo)) {
	class test2_child extends test2 {
	 
	}
}

$child = new test2_child();

echo $foo->instance . "\n";
echo $child->instance . "\n";
?>
--EXPECT--
1
2