Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0030-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bb9fe059a3a4837ef948ff1334dd4bb3748b2ec (plain)
1
2
3
4
5
6
7
8
9
10
// cs0030-3.cs : Cannot convert type `string' to `char'
// Line : 8

public class Blah {

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