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/cs0658.cs')
-rw-r--r--mcs/errors/cs0658.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/mcs/errors/cs0658.cs b/mcs/errors/cs0658.cs
deleted file mode 100644
index e4da1e82b72..00000000000
--- a/mcs/errors/cs0658.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-// cs0658.cs : Invalid attribute location "blah"
-// Line : 8
-
-public class MyClass {
-
- delegate int MyDelegate (int i, int j);
-
- [blah:Help("blah")]
- public static MyClass operator/ (MyClass i, MyClass j)
- {
-
- }
-
- public static implicit operator MyClass (Object o)
- {
-
- }
-}