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/cs0556.cs')
-rw-r--r--mcs/errors/cs0556.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/mcs/errors/cs0556.cs b/mcs/errors/cs0556.cs
deleted file mode 100644
index 36ff437d65b..00000000000
--- a/mcs/errors/cs0556.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-// cs0556.cs : User-defined conversion must convert to or from the enclosing type
-// Line : 8
-
-class Blah {
-
- public static void Main () {}
-
- public static implicit operator int (int i) {}
-
-}