summaryrefslogtreecommitdiff
path: root/Zend/tests/try_finally_011.phpt
blob: 7aa3f35feebd2e2e8744cad48ce31977e74af517 (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: Cannot break/continue 1 level in %stry_finally_011.php on line %d