xref: /PHP-8.1/Zend/tests/exception_002.phpt (revision f8d79582)
1--TEST--
2Testing exception and GOTO
3--FILE--
4<?php
5
6goto foo;
7
8try {
9    print 1;
10
11    foo:
12    print 2;
13} catch (Exception $e) {
14
15}
16
17?>
18--EXPECT--
192
20