remove debug writelines
[mcs.git] / errors / cs0055.cs
blob8995b5d7b36a8349a45d4274d7056f53cafbeb2f
1 // cs0055.cs: Inconsistent accessibility: parameter type `ErrorCS0055' is less accessible than indexer `Foo.this[ErrorCS0055]'
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 () {