[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0465-2.cs
1 // CS0465: Introducing `Finalize' method can interfere with destructor invocation. Did you intend to declare a destructor?
2 // Line: 7
3 // Compiler options: -warnaserror -warn:1
4
5 class T
6 {       
7     static void Finalize ()
8     {
9     }
10 }