A test for bug #325534
authorMarek Safar <marek.safar@gmail.com>
Fri, 5 Oct 2007 15:50:54 +0000 (15:50 -0000)
committerMarek Safar <marek.safar@gmail.com>
Fri, 5 Oct 2007 15:50:54 +0000 (15:50 -0000)
svn path=/trunk/mcs/; revision=86993

mcs/tests/test-593.cs [new file with mode: 0644]

diff --git a/mcs/tests/test-593.cs b/mcs/tests/test-593.cs
new file mode 100644 (file)
index 0000000..fba61ba
--- /dev/null
@@ -0,0 +1,18 @@
+using System;
+
+interface I
+{
+       void Finalize ();
+}
+
+class MainClass
+{
+       void Foo (I i)
+       {
+               i.Finalize ();
+       }
+
+       public static void Main ()
+       {
+       }
+}