One line typo bug which passed unoticed on previous commit.
[mono.git] / mcs / errors / cs0266-12.cs
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..e12677554e508887e51590727155024cbd52d969 100644 (file)
@@ -0,0 +1,11 @@
+// CS0266: Cannot implicitly convert type `int' to `char'. An explicit conversion exists (are you missing a cast?)
+// Line: 12
+
+class X
+{
+       public static void Main ()
+       {
+               char x = 'A';
+               char b = +x;
+       }
+}