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:
authorMiguel de Icaza <miguel@gnome.org>2001-11-28 21:15:16 +0300
committerMiguel de Icaza <miguel@gnome.org>2001-11-28 21:15:16 +0300
commit01f5ed55691bf263de4b5ebab21ff357b0af3162 (patch)
tree721428e1a37d6c6edb0878aadc6aed554e26ca8a /mcs/errors/cs0034.cs
parent7dc4f845cd37bf01ddb38c10bf44a9efe2ae8193 (diff)
Add more error tests
svn path=/trunk/mcs/; revision=1462
Diffstat (limited to 'mcs/errors/cs0034.cs')
-rwxr-xr-xmcs/errors/cs0034.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/errors/cs0034.cs b/mcs/errors/cs0034.cs
new file mode 100755
index 00000000000..2d5917abee5
--- /dev/null
+++ b/mcs/errors/cs0034.cs
@@ -0,0 +1,15 @@
+// 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);
+ }
+
+}