codeowners update
[mono.git] / mcs / errors / cs0019-47.cs
1 // CS0019: Operator `??' cannot be applied to operands of type `null' and `anonymous method' 
2 // Line: 8
3
4 delegate void D ();
5
6 class F
7 {
8         D d = null ?? delegate { };
9 }