Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0579-2.cs
1 // CS0579: The attribute `System.Diagnostics.DebuggableAttribute' cannot be applied multiple times
2 // Line: 7
3
4 using System.Diagnostics;
5
6 [module: DebuggableAttribute (false, false)] 
7 [module: DebuggableAttribute (false, false)] 
8
9 class MainClass {
10         static void Main()
11         {
12         }
13 }