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>2006-02-11 19:44:39 +0300
committerMarek Safar <marek.safar@gmail.com>2006-02-11 19:44:39 +0300
commit494780633a676fa8fb555ae509dabb1b560220c0 (patch)
treef5f34cafc47e6f606fd6756f8af58603256bd573 /mcs/tests/test-473.cs
parent2a28e5a4c1f749517326881c7d058bf80940a8bb (diff)
Add one more enum test.
svn path=/trunk/mcs/; revision=56804
Diffstat (limited to 'mcs/tests/test-473.cs')
-rw-r--r--mcs/tests/test-473.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/tests/test-473.cs b/mcs/tests/test-473.cs
index ea349737ef8..ad5af48f12c 100644
--- a/mcs/tests/test-473.cs
+++ b/mcs/tests/test-473.cs
@@ -7,6 +7,14 @@ public enum Error {
ERANGE = TestConst.C,
EANOTHER = ERANGE,
}
+
+public enum Error_2 {
+ [Obsolete ("Use A", true)]
+ ERANGE,
+ [Obsolete ("Use B", true)]
+ EANOTHER = ERANGE,
+}
+
[Obsolete ("Use Native.SignalHandler", true)]
public delegate void SignalHandler (int signal);