New test.
[mono.git] / mcs / errors / cs0054.cs
index 22fcbc2409289edf6726c311b2f073326cd9cd2e..f3841f0cb0c6d88ce9f8eadf5c84730b818b6939 100644 (file)
@@ -1,12 +1,13 @@
-// cs0054.cs: Inconsistent accessibility. Indexer return type is less accessible than indexer.
-// Line:
+// cs0054.cs: Inconsistent accessibility: indexer return type `ErrorCS0054' is less accessible than indexer `Foo.this[int]'
+// Line: 13
 
 using System;
 
 class ErrorCS0054 {
+       public ErrorCS0054 () {}
 }
 
-class Foo {
+public class Foo {
        ErrorCS0054[] errors;
 
        public ErrorCS0054 this[int i] {