summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0030-3.cs
blob: 8835ec5acc5c8e729586bf8f4bf344d0f4b5c4af (plain)
1
2
3
4
5
6
7
8
9
10
// CS0030: Cannot convert type `string' to `char'
// Line: 8

public class Blah {

	public static int Main ()
	{
		char ch = (char)"a";
	}
}