summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0019-41.cs
blob: b7f686e8879f0b942491635cb5c67760662ec159 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0019: Operator `??' cannot be applied to operands of type `int' and `int'
// Line: 8
class X
{
	static void Main ()
	{
		int a = 5;
		int b = a ?? 3;
	}
}