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/cs0034.cs')
-rwxr-xr-xmcs/errors/cs0034.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/mcs/errors/cs0034.cs b/mcs/errors/cs0034.cs
deleted file mode 100755
index 2d5917abee5..00000000000
--- a/mcs/errors/cs0034.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-// cs0034: operator >= is ambiguous on types ulong and sbyte
-// Line: 7
-class X {
-
- bool ret (ulong u, sbyte s)
- {
- return (u >= s);
- }
-
- bool ret (ulong u, short s)
- {
- return (u >= s);
- }
-
-}