quote only work on lambda on net_4_0
[mcs.git] / errors / cs0577.cs
blobbff43fa36575d893bf0d474b8e49bde8fe6a68bf
1 // cs0577.cs: Conditional not valid on `MainClass.I.F()' because it is a constructor, destructor, operator or explicit interface implementation
2 // Line: 10
4 interface I
6 void F ();
9 class MainClass: I {
10 [System.Diagnostics.Conditional("DEBUG")]
11 void I.F () {}