2004-05-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / tests / ix2.cs
index 714fa7b1594a68108e99510defb2bc7fd40b7c2c..c36b52ea2ac5b8640022e7816b96ebaf8db50093 100755 (executable)
@@ -1,5 +1,15 @@
-interface INTERFACE {
+using System;
+
+interface Blah {
        string this [ int INDEX ] { get; set; }
        string Item (int index);
 }
-       
+
+public class Foo {
+
+       public static void Main ()
+       {
+               Console.WriteLine ("foo");
+       }
+}
+