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

gcs0029-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c709627e28c93d3896806853150b228a271810f (plain)
1
2
3
4
5
6
7
8
9
// CS0029: Cannot implicitly convert type `bool' to `int'
// Line : 7

class T {
	static int Main ()
	{
		int a = default(bool);
	}
}