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-128.cs')
-rw-r--r--mcs/tests/test-128.cs41
1 files changed, 0 insertions, 41 deletions
diff --git a/mcs/tests/test-128.cs b/mcs/tests/test-128.cs
deleted file mode 100644
index 21e5ec7b05b..00000000000
--- a/mcs/tests/test-128.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-using System;
-
-public class SimpleAttribute : Attribute {
-
- string n;
-
- public SimpleAttribute (string name)
- {
- n = name;
- }
-}
-
-public class Blah {
-
- int i;
-
- public int Value {
-
- [Simple ("Foo!")]
- get {
- return i;
- }
-
- [Simple ("Bar !")]
- set {
- i = value;
- }
-
- }
-
- public static int Main ()
- {
- //
- // We need a better test which does reflection to check if the
- // attributes have actually been applied etc.
- //
-
- return 0;
- }
-
-}