[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1635.cs
1 // CS1635: Cannot restore warning `CS0219' because it was disabled globally
2 // Line: 11
3 // Compiler options: -nowarn:219 -warnaserror
4
5 class C
6 {
7     public static void Main ()
8     {
9 #pragma warning disable 219
10         int o = 4;
11 #pragma warning restore 219
12     }
13 }