Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2007-10-05 19:50:54 +0400
committerMarek Safar <marek.safar@gmail.com>2007-10-05 19:50:54 +0400
commita8e64f9036ab49e4ba797d20f880126fff9602d7 (patch)
tree0a024992c3e1ca8d9d96ebd6142e404089a7d7bf /mcs/tests/test-593.cs
parentee098cd207243c29f33449cf3adf4875d1e2dc21 (diff)
A test for bug #325534
svn path=/trunk/mcs/; revision=86993
Diffstat (limited to 'mcs/tests/test-593.cs')
-rw-r--r--mcs/tests/test-593.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/test-593.cs b/mcs/tests/test-593.cs
new file mode 100644
index 00000000000..fba61ba1b41
--- /dev/null
+++ b/mcs/tests/test-593.cs
@@ -0,0 +1,18 @@
+using System;
+
+interface I
+{
+ void Finalize ();
+}
+
+class MainClass
+{
+ void Foo (I i)
+ {
+ i.Finalize ();
+ }
+
+ public static void Main ()
+ {
+ }
+}