New test.
[mono.git] / mcs / errors / cs0021-3.cs
1 // cs0021-2.cs: Cannot apply indexing with [] to an expression of type `Foo'
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 }