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:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2001-09-06 05:15:50 +0400
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2001-09-06 05:15:50 +0400
commit20bfbda6f9bfb278233fc1cbafcf18d0e2ce3b39 (patch)
tree05e7f2954fda03473e351c2aa58f88b21cff5337 /mcs/errors/cs0658.cs
parentf8dcea926714737766bdb8659217d3d08e601806 (diff)
added errors/cs0658.cs which I forgot to last time ;-) [ as usual ! ]
svn path=/trunk/mcs/; revision=727
Diffstat (limited to 'mcs/errors/cs0658.cs')
-rw-r--r--mcs/errors/cs0658.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/errors/cs0658.cs b/mcs/errors/cs0658.cs
new file mode 100644
index 00000000000..e4da1e82b72
--- /dev/null
+++ b/mcs/errors/cs0658.cs
@@ -0,0 +1,18 @@
+// 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)
+ {
+
+ }
+}