Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0577.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bff43fa36575d893bf0d474b8e49bde8fe6a68bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0577.cs: 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 () {}
}