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

using System.Diagnostics;

[module: DebuggableAttribute (false, false)] 
[module: DebuggableAttribute (false, false)] 

class MainClass {
        static void Main()
        {
        }
}