2005-05-20 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / tests / ix2.cs
old mode 100755 (executable)
new mode 100644 (file)
index 714fa7b..c36b52e
@@ -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");
+       }
+}
+