X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0117-2.cs;h=79df8d4ac1f9e34d0dace9273d16f4eb4e81a052;hb=0900c61969ca862b0bcc967b4413e539acf07dbb;hp=a62c853fe592ab8e25c2aff37e25345e555f830e;hpb=ff228e1c801bda9666b6edab3ee962e05edcf480;p=mono.git diff --git a/mcs/errors/cs0117-2.cs b/mcs/errors/cs0117-2.cs deleted file mode 100644 index a62c853fe59..00000000000 --- a/mcs/errors/cs0117-2.cs +++ /dev/null @@ -1,22 +0,0 @@ -// CS0117: `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 ()); - } -}