| Current Path : /var/www/html/edd.sumar.com.py/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/ |
| Current File : /var/www/html/edd.sumar.com.py/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/multiCatch.test |
Multi catch
-----
<?php
try {
$x;
} catch (X|Y $e1) {
$y;
} catch (\A|B\C $e2) {
$z;
}
-----
try {
$x;
} catch (X|Y $e1) {
$y;
} catch (\A|B\C $e2) {
$z;
}