blob: a20b1558610a376855c9026a2ee6e4ce89b249d0 (
plain)
1
2
3
4
5
6
7
8
|
// CS0465: Introducing `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 ();
}
|