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/cs0121.cs')
-rwxr-xr-xmcs/errors/cs0121.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/mcs/errors/cs0121.cs b/mcs/errors/cs0121.cs
deleted file mode 100755
index 7a8797ee680..00000000000
--- a/mcs/errors/cs0121.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-// cs0121.cs: ambigous call when selecting function due to implicit casts
-// Line: 15
-
-class X {
- static void a (int i, double d)
- {
- }
-
- static void a (double d, int i)
- {
- }
-
- public static void Main ()
- {
- a (0, 0);
- }
-}