Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0122-24.cs
1 // CS0122: `Foo.this[int]' is inaccessible due to its protection level
2 // Line: 14
3
4 using System;
5         
6 public class Foo {
7         private int this[int index] { get { return index; } }
8 }
9         
10 public class Bar {
11         public static void Main ()
12         {
13                 Foo foo = new Foo ();
14                 Console.WriteLine (foo[5]);
15         }
16 }