summaryrefslogtreecommitdiff
path: root/Zend/tests/bug70944.phpt
blob: f14af651660376f06cbe8d720a707eecaaa53a46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #70944 (try{ } finally{} can create infinite chains of exceptions)
--FILE--
<?php
$e = new Exception("Bar");
try {
	  throw new Exception("Foo", 0, $e);
} finally {
	  throw $e;
}
?>
--EXPECTF--
Fatal error: Uncaught Exception: Bar in %sbug70944.php:%d
Stack trace:
#0 {main}
  thrown in %sbug70944.php on line %d