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>2010-05-06 23:07:23 +0400
committerMarek Safar <marek.safar@gmail.com>2010-05-06 23:07:23 +0400
commit06011c9f62941f43083644b2df8cc938ace4a0ff (patch)
treeabc5fdca4d8b5c473bc634f5f6b2396e58a2078f /mcs/tests/test-758.cs
parentde3535846e15d247f8979632e28c09c27fb45d63 (diff)
New test.
svn path=/trunk/mcs/; revision=156841
Diffstat (limited to 'mcs/tests/test-758.cs')
-rw-r--r--mcs/tests/test-758.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/mcs/tests/test-758.cs b/mcs/tests/test-758.cs
new file mode 100644
index 00000000000..ca0f46d1adf
--- /dev/null
+++ b/mcs/tests/test-758.cs
@@ -0,0 +1,17 @@
+// Compiler options: -warn:4 -warnaserror
+
+public class C
+{
+ public int Finalize;
+
+ public static void Main ()
+ {
+ }
+}
+
+public class D : C
+{
+ ~D ()
+ {
+ }
+}