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

delegate void D ();

class F
{
	D d = null ?? delegate { };
}