2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0122-24.cs
blobfb641992977f98c1b21dd23de5cf76f18b0992b0
1 // CS0122: `Foo.this[int]' is inaccessible due to its protection level
2 // Line: 14
4 using System;
6 public class Foo {
7 private int this[int index] { get { return index; } }
10 public class Bar {
11 public static void Main ()
13 Foo foo = new Foo ();
14 Console.WriteLine (foo[5]);