2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0019-7.cs
blobe583c04aaad977c5aa3bd7d382081a06238d0c5a
1 // CS0019: Operator `??' cannot be applied to operands of type `null' and `anonymous method'
2 // Line: 8
4 delegate void D ();
6 class F
8 D d = null ?? delegate { };