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

cs0465.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 192c3347929ca6095184bec18ef179317d2f7dd9 (plain)
1
2
3
4
5
6
7
8
// cs0465.cs: Introducing a 'Finalize' method can interfere with destructor invocation. Did you intend to declare a destructor?
// Line: 7
// Compiler options: -warnaserror -warn:1

interface I
{
    void Finalize ();
}