Merge pull request #1606 from alexanderkyte/debug-finalizers
[mono.git] / mcs / errors / cs0620.cs
index d6db0c59a380449bf4eb3076c54ddc8686eadbf6..f55503d56c048875d22aba8e801daedffee82417 100644 (file)
@@ -1,7 +1,8 @@
-// cs0620.cs: Indexers cannot have void type
+// CS0620: `PropertyClass.this[int]': indexer return type cannot be `void'
 // Line: 5
 
 class PropertyClass {
-        public void this [int i] { set {}
+        public void this [int i] {
+               set {}
         }
 }