summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0579-3.cs
blob: 399e712367407f2f7aaee67c4d8ff44436aad136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0579: The attribute `System.ObsoleteAttribute' cannot be applied multiple times
// Line : 8

using System;

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