[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs0103-16.cs
1 // CS0103: The name `nameof' does not exist in the current context
2 // Line: 8
3
4 static class C
5 {
6         static void Main ()
7         {
8                 string s = nameof (nameof);
9         }
10 }