Imported Upstream version 4.4.0.40

Former-commit-id: 6427cc082e74df30afc535fd906a3494b74b0817
This commit is contained in:
Xamarin Public Jenkins
2016-03-16 12:38:19 -04:00
parent f3e3aab35a
commit a632333cc7
110 changed files with 1496 additions and 556 deletions

10
mcs/errors/cs8082-3.cs Normal file
View File

@@ -0,0 +1,10 @@
// CS8082: An argument to nameof operator cannot include sub-expression
// Line: 8
class C
{
void Foo ()
{
var v = nameof (this?.Equals);
}
}