package TestCase::CompileError::Switch::NoLastBreak {
  sub main : int () {
    switch (1) {
      case 1 : {
        1;
      }
    }
  }
}