linux-packaging-mono/mcs/tests/test-debug-15.cs

15 lines
148 B
C#
Raw Normal View History

using System.IO;
class Foo
{
~Foo()
{
StreamWriter.Null.WriteLine("Finalize");
}
public static void Main ()
{
new Foo ();
}
}