[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs0415.cs
index 3f524e915797907396f6cfbbd09896a5d09ba4f3..915e8277b263b58b34899571ba547a7e0ca95e99 100644 (file)
@@ -1,4 +1,4 @@
-// cs0415.cs: The `IndexerName' attribute is valid only on an indexer that is not an explicit interface member declaration
+// CS0415: The `System.Runtime.CompilerServices.IndexerNameAttribute' attribute is valid only on an indexer that is not an explicit interface member declaration
 // Line: 11
 
 using System.Runtime.CompilerServices;
@@ -8,7 +8,7 @@ interface A {
 }
 
 class X : A {
-        [IndexerName("Error")]
+       [IndexerName("Error")]
        int A.this [int a] { set {} }
 }