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

cs0619-13.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f4304b12cb35a5ca5a59d9d6bba1dd585d47527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0619.cs: 'Obsolete' is obsolete: ''
// Line: 11

[System.Obsolete("", true)]
class Obsolete {
}

class MainClass {
        public static void Main ()
        {
                System.Type t = typeof (Obsolete);
        }
}