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>2005-03-01 11:45:38 +0300
committerMarek Safar <marek.safar@gmail.com>2005-03-01 11:45:38 +0300
commit14975eec5bdbb65da5258468e3b36a37d8a5e4f6 (patch)
treee356df32852d24047bba5fcd09bd6b482784807d /mcs/tests/test-353.cs
parentd82438bdde0ab055a23f0c9bcce2ed6fe8f37fa1 (diff)
2005-03-01 Marek Safar <marek.safar@seznam.cz>
* test-352.cs: New test. * test-353.cs, test-353-2: Bug #73117 svn path=/trunk/mcs/; revision=41310
Diffstat (limited to 'mcs/tests/test-353.cs')
-rw-r--r--mcs/tests/test-353.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/tests/test-353.cs b/mcs/tests/test-353.cs
new file mode 100644
index 00000000000..adc9c932e40
--- /dev/null
+++ b/mcs/tests/test-353.cs
@@ -0,0 +1,12 @@
+// Compiler options: ../test-353-2.cs
+
+using System;
+
+[Obsolete]
+public class One { }
+
+#pragma warning disable 612
+
+public class Two {
+ private One one;
+}