blob: 8248e5464467851c6bc8fb42b7f17bd6ec7bac27 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS0465: Introducing `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 ()
{
}
}
|