blob: 3dbaeb3600bac2b406fa83f9e5e82a63601b7243 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// CS0023: The `?' operator cannot be applied to operand of type `method group'
// Line: 14
class X
{
void Test ()
{
}
public static void Main ()
{
X x = null;
System.Action n = x?.Test;
}
}
|