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

using System;

class ClassMain {
        public static void Main() {
            Exception e = (object)null as Exception;
        }
}