[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1525-50.cs
1 // CS1525: Unexpected symbol `}', expecting `{' or `when'
2 // Line: 11
3
4 using System;
5
6 class MyTest
7 {
8         public static void Main (string[] args)
9         {
10                 try {
11                 } catch (Exception)
12         }
13 }