summaryrefslogtreecommitdiff
path: root/Zend/tests/try/try_finally_011.phpt
blob: 8a9dc62ca4fac0b376266c774f152f05bc0ae11d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Try finally (segfault with empty break)
--FILE--
<?php
function foo () {
	try {
		break;
	} finally {
	}
}

foo();
?>
--EXPECTF--
Fatal error: 'break' not in the 'loop' or 'switch' context in %stry_finally_011.php on line %d