summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0186-2.cs
blob: fc152c24bef8d48d8682562cbc7521383989d182 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0186: Use of null is not valid in this context
// Line: 2

class ClassMain {    
	public static void Main() {
		foreach (System.Type type in null) {
		}                    
	}
}