[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0186-2.cs
1 // CS0186: Use of null is not valid in this context
2 // Line: 2
3
4 class ClassMain {    
5         public static void Main() {
6                 foreach (System.Type type in null) {
7                 }                    
8         }
9 }
10