You've already forked linux-packaging-mono
Imported Upstream version 4.2.1.60
Former-commit-id: 05052d1d7a3a94b0d9ee70461d62b6591e5ab5bc
This commit is contained in:
committed by
Jo Shields
parent
ea5caba957
commit
bdd40f83c0
15
mcs/errors/cs0023-26.cs
Normal file
15
mcs/errors/cs0023-26.cs
Normal file
@@ -0,0 +1,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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user