blob: 7d87e619c24f384405d9878995b29bfb7b77d038 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0577: Conditional not valid on `MainClass.I.F()' because it is a constructor, destructor, operator or explicit interface implementation
// Line: 10
interface I
{
void F ();
}
class MainClass: I {
[System.Diagnostics.Conditional("DEBUG")]
void I.F () {}
}
|