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: 1dea8cf5f4449b5d32378938bf51f642ddab7433 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0186.cs: Use of null is not valid in this context
// Line: 2

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