[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[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 }