[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs1061.cs
blob611ad4c38c6ed8329f96cc2773dcadcfcab07d10
1 // CS1061: Type `A' does not contain a definition for `Foo' and no extension method `Foo' of type `A' could be found. Are you missing an assembly reference?
2 // Line: 16
4 using System;
5 using System.Runtime.CompilerServices;
7 class A
9 [IndexerName ("Foo")]
10 public int this [int index] {
11 get { return index; }
14 static int Test (A a)
16 return a.Foo;
19 public static void Main ()
21 Test (new A ());