1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 09:47:59 +01:00
PHP-Parser/test/code/prettyPrinter/stmt/tryCatch_without_variable.test
2020-06-03 09:18:13 +02:00

18 lines
139 B
Plaintext

tryCatch without variable
-----
<?php
try {
} catch (Exception) {
} finally {
}
-----
!!php7
try {
} catch (Exception) {
} finally {
}