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-39.cs')
-rw-r--r--mcs/tests/test-39.cs38
1 files changed, 0 insertions, 38 deletions
diff --git a/mcs/tests/test-39.cs b/mcs/tests/test-39.cs
deleted file mode 100644
index 7366b1c0ce2..00000000000
--- a/mcs/tests/test-39.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-using System;
-[AttributeUsage (AttributeTargets.Class, AllowMultiple = true)]
- public class SimpleAttribute : Attribute {
-
- string name = null;
-
- public string MyNamedArg;
-
- private string secret;
-
- public SimpleAttribute (string name)
- {
- this.name = name;
- }
-
- public string AnotherArg {
- get {
- return secret;
- }
- set {
- secret = value;
- }
- }
-
- }
-
-[Simple ("Dummy", MyNamedArg = "Dude!")]
-[Simple ("Vids", MyNamedArg = "Raj", AnotherArg = "Foo")]
- public class Blah {
-
- public static int Main ()
- {
- Console.WriteLine ("A dummy app which tests attribute emission");
- return 0;
- }
- }
-
-