cs0157.cs 143 B

123456789101112
  1. // cs0157.cs: Control can not leave the body of a finally clause
  2. // Line: 9
  3. class X {
  4. void A ()
  5. {
  6. try {
  7. } finally {
  8. return;
  9. }
  10. }
  11. }