Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/exceptions/try-ctrl-flow.cfa

    rd96f7c4 rd3cf623  
    8181}
    8282
    83 void choose_fallthrough_in_finally() {
     83void choose_fallthru_in_finally() {
    8484        choose (1) {
    8585        case 1:
    8686                try {} finally {
    87                         fallthrough;
     87                        fallthru;
    8888                }
    8989        default:
     
    105105}
    106106
    107 void labelled_choose_fallthrough_in_finally() {
     107void labelled_choose_fallthru_in_finally() {
    108108        mainBlock: choose (1) {
    109109        case 1:
    110110                try {} finally {
    111                         fallthrough mainBlock;
     111                        fallthru mainBlock;
    112112                }
    113113        case 2:
     
    118118}
    119119
    120 void choose_fallthrough_default_in_finally() {
     120void choose_fallthru_default_in_finally() {
    121121        choose (1) {
    122122        case 1:
    123123                try {} finally {
    124                         fallthrough default;
     124                        fallthru default;
    125125                }
    126126        default:
Note: See TracChangeset for help on using the changeset viewer.