w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0055.cs
blob913c0df25e44a0a7e1395677106929f71688ebd7
1 // CS0055: 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 () {