[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs0102-6.cs
1 // CS0102: The type `X' already contains a definition for `A'
2 // Line: 6
3
4 class X {
5         const int A = 10;
6         int A () {}
7 }