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-131.cs')
-rw-r--r--mcs/tests/test-131.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/mcs/tests/test-131.cs b/mcs/tests/test-131.cs
deleted file mode 100644
index 568576c96fa..00000000000
--- a/mcs/tests/test-131.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System;
-
-public class SimpleAttribute : Attribute {
-
- string n;
-
- public SimpleAttribute (string name)
- {
- n = name;
- }
-}
-
-public class Blah {
-
- public enum Foo {
-
- A,
-
- [Simple ("second")]
- B,
-
- C
- }
-
- public static int Main ()
- {
- //
- // We need a better test which does reflection to check if the
- // attributes have actually been applied etc.
- //
-
- return 0;
- }
-
-}