New test.
[mono.git] / mcs / errors / cs0186-2.cs
1 // cs0186-2.cs: 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