Flush
[mono.git] / mcs / errors / cs0054.cs
1 // cs0054.cs: Inconsistent accessibility. Indexer return type is less accessible than indexer.
2 // Line:
3
4 using System;
5
6 class ErrorCS0054 {
7 }
8
9 class Foo {
10         ErrorCS0054[] errors;
11
12         public ErrorCS0054 this[int i] {
13                 get { return new ErrorCS0054 (); }
14         }
15
16         public static void Main () {
17         }
18 }
19