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

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

class T
{	
    static void Finalize ()
    {
    }
}