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:
authorMarek Safar <marek.safar@gmail.com>2005-03-08 15:47:42 +0300
committerMarek Safar <marek.safar@gmail.com>2005-03-08 15:47:42 +0300
commit62fa0a39fb9c69fa0bcca42b1f8e99bd4fddde71 (patch)
tree2ea24d3c2b12db15b3682246041a1dc2d12d86e6 /mcs/errors/cs0266.cs
parent76584b8e4117858141aaad379071d33278ea3eb1 (diff)
parent439a11c23affba077cb480e497152f088ab32d1a (diff)
fixed wrong errors
update svn path=/trunk/mcs/; revision=41565
Diffstat (limited to 'mcs/errors/cs0266.cs')
-rw-r--r--mcs/errors/cs0266.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/mcs/errors/cs0266.cs b/mcs/errors/cs0266.cs
new file mode 100644
index 00000000000..cac37895898
--- /dev/null
+++ b/mcs/errors/cs0266.cs
@@ -0,0 +1,25 @@
+// cs0266.cs: Cannot implicitly convert type 'Foo.MyEnumType' to 'uint'. An explicit conversion exists (are you missing a cast?)
+// Line: 10
+
+public class Foo {
+ enum MyEnumType { MyValue }
+
+ public void Bar ()
+ {
+ uint my_uint_var = 0;
+ switch (my_uint_var) {
+ case MyEnumType.MyValue:
+ break;
+ default:
+ break;
+ }
+ }
+
+ static void Main () {}
+}
+
+
+
+
+
+