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:
Diffstat (limited to 'mcs/tests/test-127.cs')
-rwxr-xr-xmcs/tests/test-127.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/mcs/tests/test-127.cs b/mcs/tests/test-127.cs
deleted file mode 100755
index 1ca2bed7449..00000000000
--- a/mcs/tests/test-127.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//
-// It is possible to invoke Enum methods on an enum type.
-//
-using System;
-
-enum Test {
- A,
- B,
- C
-}
-
-class X {
-
- static int Main ()
- {
- Test test = Test.A;
-
- if (!Test.IsDefined (typeof (Test), test))
- return 1;
-
- return 0;
- }
-}