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>2009-03-03 18:45:01 +0300
committerMarek Safar <marek.safar@gmail.com>2009-03-03 18:45:01 +0300
commitcccf6d7749c0155c18e9c54e685da89c9b77d069 (patch)
treef55d2a1fb6d17b2eecf94f19de9575ba7f476891 /mcs/tests/test-710.cs
parent0c94cf907b65bed4381a8f22a42a56b56040799e (diff)
New test.
svn path=/trunk/mcs/; revision=128449
Diffstat (limited to 'mcs/tests/test-710.cs')
-rw-r--r--mcs/tests/test-710.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/mcs/tests/test-710.cs b/mcs/tests/test-710.cs
new file mode 100644
index 00000000000..0fe59f33f53
--- /dev/null
+++ b/mcs/tests/test-710.cs
@@ -0,0 +1,16 @@
+// Compiler options: -warnaserror -warnaserror-:612,219
+
+using System;
+
+[Obsolete]
+class Z
+{
+}
+
+class C
+{
+ public static void Main ()
+ {
+ Z z = new Z ();
+ }
+}