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: 6cb8bcd4d23c01a4e88699b377bb5c768d8b4bb3 (plain)
1
2
3
4
5
6
// 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) {
                }                    }
}