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: 0a1ffe1b8763a0831d791c0504dbe4ca95a3ed57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0579.cs: The attribute `System.ObsoleteAttribute' cannot be applied multiple times
// Line : 8

using System;

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