Imported Upstream version 4.2.1.60

Former-commit-id: 9b26026d54721a136cb1f0874b60f96f4169873f
This commit is contained in:
Xamarin Public Jenkins
2015-10-06 08:40:39 -04:00
committed by Jo Shields
parent 4215c1b088
commit 2faab2dafa
55 changed files with 488 additions and 317 deletions

15
mcs/errors/cs0023-26.cs Normal file
View 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;
}
}