Switch to compiler-tester
[mono.git] /
1 using System;
2
3 interface Blah {
4         string this [ int INDEX ] { get; set; }
5         string Item (int index);
6 }
7
8 public class Foo {
9
10         public static void Main ()
11         {
12                 Console.WriteLine ("foo");
13         }
14 }
15