Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0266-12.cs
1 // CS0266: Cannot implicitly convert type `int' to `char'. An explicit conversion exists (are you missing a cast?)
2 // Line: 12
3
4 class X
5 {
6         public static void Main ()
7         {
8                 char x = 'A';
9                 char b = +x;
10         }
11 }