blob: 05ba050be114fd998cd7dac9f343302a5e0495ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0019: Operator `??' cannot be applied to operands of type `null' and `method group'
// Line: 8
class C
{
delegate void D ();
static void Main ()
{
D d = null ?? Main;
}
}
|