Flush (work in progress)
[mono.git] / mcs / errors / cs0117-2.cs
diff --git a/mcs/errors/cs0117-2.cs b/mcs/errors/cs0117-2.cs
deleted file mode 100644 (file)
index 79df8d4..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// cs0117-2.cs: `A' does not contain a definition for `Foo'
-// Line: 15
-using System;
-using System.Runtime.CompilerServices;
-
-class A
-{
-       [IndexerName ("Foo")]
-       public int this [int index] {
-               get { return index; }
-       }
-
-       static int Test (A a)
-       {
-               return a.Foo;
-       }
-
-       public static void Main ()
-       {
-               Test (new A ());
-       }
-}