blob: 440e06593c141d0467b34b8c38ae840679a03d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--TEST--
Catch first exception in the second multicatch
--FILE--
<?php
require_once __DIR__ . '/exceptions.inc';
try {
echo 'TRY' . PHP_EOL;
throw new Exception3;
} catch(Exception1 | Exception2 $e) {
echo get_class($e) . PHP_EOL;
} catch(Exception3 | Exception4 $e) {
echo get_class($e) . PHP_EOL;
} finally {
echo 'FINALLY' . PHP_EOL;
}
?>
--EXPECT--
TRY
Exception3
FINALLY
|