TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs8082.cs
blob70afa6b7e79857db605b56a9d22e7ee6152efe1f
1 // CS8082: An argument to nameof operator cannot include sub-expression
2 // Line: 9
4 class C
6 void Foo ()
8 object o = null;
9 var s = nameof (o.ToString ().Equals);