[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1525-5.cs
1 // CS1525: Unexpected symbol `int'
2 // Line: 8
3
4 class T {
5         void member ()
6         {
7                 int a = 1 | 2
8                 int b;
9         }
10 }