Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs8081-2.cs
1 // CS8081: Expression does not have a name
2 // Line: 8
3
4 class C
5 {
6         void Foo ()
7         {
8                 string s = nameof (this);
9         }
10 }