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