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/cs0172.cs')
-rwxr-xr-xmcs/errors/cs0172.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/mcs/errors/cs0172.cs b/mcs/errors/cs0172.cs
deleted file mode 100755
index c0496e9b83f..00000000000
--- a/mcs/errors/cs0172.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-class X {
- public static implicit operator X (Y y)
- {
- return null;
- }
-}
-
-class Y {
- public static implicit operator Y (X x)
- {
- return null;
- }
-}
-
-class Main
-{
- static void Main ()
- {
- X x = new X ();
- Y y = new Y ();
-
- object d = (x == x) ? x : y;
- }
-
-}