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-12 00:08:21 +0400
committerMarek Safar <marek.safar@gmail.com>2010-05-12 00:08:21 +0400
commitcd90bd7a9bc732b55980d2f72b4c5fe08eed2fd6 (patch)
tree407c6c0211d7427c9930c14c8bce28e18c1fb9a8 /mcs/tests/test-760.cs
parent7eb31f04ddd9fcbcab2652ab0773260a8bdca4c1 (diff)
New test.
svn path=/trunk/mcs/; revision=157157
Diffstat (limited to 'mcs/tests/test-760.cs')
-rw-r--r--mcs/tests/test-760.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/mcs/tests/test-760.cs b/mcs/tests/test-760.cs
new file mode 100644
index 00000000000..fec6cafc3fb
--- /dev/null
+++ b/mcs/tests/test-760.cs
@@ -0,0 +1,17 @@
+// Compiler options:-r:test-760-lib.dll
+
+class A : D
+{
+}
+
+//class A2 : C
+//{
+//}
+
+class Test
+{
+ public static void Main ()
+ {
+ new A ();
+ }
+}