**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0055.cs
bloba37d8e5293677ebd3ebdb60f68c7da2124803a68
1 // cs0055.cs: Inconsistent accessibility. Parameter type is less accessible than indexer.
2 // Line: 11
4 using System;
6 class ErrorCS0055 {
7 public ErrorCS0055 () {}
10 public class Foo {
11 public int this[ErrorCS0055 e] {
12 get { return 5; }
15 public static void Main () {