2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0021-3.cs
blobc2f43ca9ca8cd149ebe1829a2b5a3c5289067781
1 // cs0021-2.cs: Cannot apply indexing with [] to an expression of type `Foo'
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]);