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/cs1020.cs')
-rw-r--r--mcs/errors/cs1020.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/mcs/errors/cs1020.cs b/mcs/errors/cs1020.cs
deleted file mode 100644
index 891a613331f..00000000000
--- a/mcs/errors/cs1020.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-// cs1020.cs : Overloadable binary operator expected
-// Line : 19
-
-
-public class MyClass {
-
- public int this[int ndx]
- {
- get { }
- set { }
- }
-
- public event EventHandler Click
- {
- add { }
- remove { }
- }
-
- public static MyClass operator++ (MyClass i, MyClass j)
- {
-
- }
-
- public static implicit operator MyClass (Object o)
- {
-
- }
-}