summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0266-12.cs
blob: e12677554e508887e51590727155024cbd52d969 (plain)
1
2
3
4
5
6
7
8
9
10
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;
	}
}