[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0582.cs
1 // CS0582: Conditional not valid on interface members
2 // Line: 5
3
4 interface Interface {
5         [System.Diagnostics.ConditionalAttribute("DEBUG")]
6         void Method ();
7 }
8