[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs7003.cs
blobefa2ef04f8e560663510056d3246cfcc9f4c8e05
1 // CS7003: Unbound generic name is not valid in this context
2 // Line: 17
4 using System;
6 class C<T>
8 public class G<U>
13 class M
15 public static void Main ()
17 Type t = typeof (C<int>.G<>);