(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0117-2.cs
bloba62c853fe592ab8e25c2aff37e25345e555f830e
1 // CS0117: `A' does not contain a definition for `Foo'.
2 // Line: 15
3 using System;
4 using System.Runtime.CompilerServices;
6 class A
8 [IndexerName ("Foo")]
9 public int this [int index] {
10 get { return index; }
13 static int Test (A a)
15 return a.Foo;
18 public static void Main ()
20 Test (new A ());