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

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

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