summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0029-23.cs
blob: 1102d2a6bb05b60dc27c73636dd56246b328e671 (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);
	}
}