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