summaryrefslogtreecommitdiff
path: root/Zend/tests/bug47165.phpt
blob: 2cf648d85514838c74dd2068faad9fcca5807490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Bug #47165 (Possible memory corruption when passing return value by reference)
--FILE--
<?php
class Foo {
	var $bar = array();

	static function bar() {
		static $instance = null;
		$instance = new Foo();
		return $instance->bar;
	}
}
extract(Foo::bar());
echo "ok\n";
?>
--EXPECT--
ok