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:
authorAlp Toker <alp@mono-cvs.ximian.com>2007-03-13 21:56:25 +0300
committerAlp Toker <alp@mono-cvs.ximian.com>2007-03-13 21:56:25 +0300
commit2e91959f0f3466302788e720168a2566fae167a8 (patch)
treee6f2b62f0ec78c2536aae96b6e42e64b53a44700 /mcs/tests/test-567.cs
parent337b6aedc73387e0c24ade32a7e20de56c2ac1b2 (diff)
Revert r74157 -- should not have been a compiler test
svn path=/trunk/mcs/; revision=74194
Diffstat (limited to 'mcs/tests/test-567.cs')
-rw-r--r--mcs/tests/test-567.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/mcs/tests/test-567.cs b/mcs/tests/test-567.cs
deleted file mode 100644
index 5a5c0364cc9..00000000000
--- a/mcs/tests/test-567.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-// Test for bug 63841 -- GetElementType() returns underlying enum type
-// instead of null
-
-using System;
-
-class Test
-{
- static void Main ()
- {
- Type a = typeof (A).GetElementType ();
- if (a != null)
- Console.WriteLine ("ERROR a != null");
-
- Type b = typeof (B).GetElementType ();
- if (b != null)
- Console.WriteLine ("ERROR b != null");
-
- Type c = typeof (C).GetElementType ();
- if (c != null)
- Console.WriteLine ("ERROR c != null");
- }
-
- enum A { }
- enum B : byte { }
- enum C : byte { X, Y, Z }
-}