2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0186-2.cs
blob83660905f6a2ee98377b332cedc423b6b758e74e
1 // cs0186-2.cs: Use of null is not valid in this context
2 // Line: 2
4 class ClassMain {
5 public static void Main() {
6 foreach (System.Type type in null) {
7 }