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

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

using System;

class MainClass {
        [Obsolete]
        [Obsolete]
        static void Main()
        {
        }
}