summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0019-52.cs
blob: 06da5a8b8b592bcbf9f5647edd68e9a0e7fd21b2 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0019: Operator `??' cannot be applied to operands of type `null' and `bool'
// Line: 8

class Program
{
	static void Main()
	{
		object s = null ?? true;
	}
}