summaryrefslogtreecommitdiff
path: root/Zend/tests/bug71474.phpt
blob: 72b0db91a1a6c3d8ea741a674d903072d78968f7 (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 #71474: Crash because of VM stack corruption on Magento2
--FILE--
<?php
class foo {
	function __call($name, $args) {
		$a = $b = $c = $d = $e = $f = 1;
	}
}

function test($n, $x) {
//	var_dump($n);
	if ($n > 0) {
		$x->bug();
		test($n - 1, $x);
	}
}

test(3000, new foo());
echo "OK\n";
?>
--EXPECT--
OK