* cs0208-7.cs, cs0208-8.cs: New tests. Verified on CSC.
[mono.git] / mcs / errors / cs0577.cs
1 // cs0577.cs: Conditional not valid on 'MainClass.I.F()' because it is a destructor, operator, or explicit interface implementation
2 // Line: 10
3
4 interface I
5 {
6     void F ();
7 }
8
9 class MainClass: I {
10         [System.Diagnostics.Conditional("DEBUG")]
11         void I.F () {}
12 }