[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0246-24.cs
blob45239fe83ef82334e94fe225f98d13e0bf4588f1
1 // CS0246: The type or namespace name `TypeMe' could not be found. Are you missing an assembly reference?
2 // Line: 12
4 class C
6 static void Foo<T> (int i)
10 public static void Main ()
12 Foo<TypeMe> (1);