[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1525-8.cs
1 // CS1525: Unexpected symbol `i', expecting `}', `case', or `default:'
2 // Line: 11
3
4 class X {
5
6         static void Main ()
7         {
8                 int i = 0;
9
10                 switch (i){
11                         i = 4;
12                 }
13         }
14 }