2003-02-13 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0157.cs
1 // cs0157.cs: Control can not leave the body of a finally clause
2 // Line: 9
3
4 class X {
5         void A ()
6         {
7                 try {
8                 } finally {
9                         return;
10                 }
11         }
12 }