Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0186.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4f5468984479759d52dd3aa773d54b103b979c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0186: Use of null is not valid in this context
// Line: 8

using System.Collections;

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