Merge pull request #1349 from martinjt/MachineKeyProtect
[mono.git] / mcs / errors / cs8083.cs
1 // CS8083: An alias-qualified name is not an expression
2 // Line: 8
3
4 class C
5 {
6         static void Main ()
7         {
8                 string s = nameof (global::C);
9         }
10 }