merge -r 60814:60815
[mono.git] / mcs / errors / cs0579-2.cs
1 // cs0579-2.cs: 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 }