[System.Runtime.Remoting] Adds System.Core reference for tests
[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