2003-02-05 Alan Tam <Tam@suiLung.com>
[mono.git] / mcs / errors / cs0055.cs
1 // cs0055.cs: Inconsistent accessibility. Parameter type is less accessible than indexer.
2 // Line:  10
3
4 using System;
5
6 class ErrorCS0055 {
7 }
8
9 class Foo {
10         public ErrorCS0055 this[ErrorCS0055 e] {
11                 get { return new ErrorCS0055 (); }
12         }
13
14         public static void Main () {
15         }
16 }
17