php-parser/test/code/prettyPrinter/stmt/tryCatch_without_variable.test

18 lines
139 B
Plaintext
Raw Normal View History

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