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/errors/cs0592.cs')
-rw-r--r--mcs/errors/cs0592.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/errors/cs0592.cs b/mcs/errors/cs0592.cs
deleted file mode 100644
index 02dd459cdbe..00000000000
--- a/mcs/errors/cs0592.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// cs0592.cs : Attribute 'Simple' is not valid on this declaration type. It is valid on 'constructor' declarations only.
-// Line : 22
-
-using System;
-
-[AttributeUsage (AttributeTargets.Constructor, AllowMultiple = true)]
- public class SimpleAttribute : Attribute {
-
- string name = null;
-
- public string MyNamedArg;
-
- public SimpleAttribute (string name)
- {
- this.name = name;
- }
-
-
- }
-
-[Simple ("Dummy", MyNamedArg = "Dude!")]
- public class Blah {
-
- public static void Main ()
- {
- }
- }
-
-