[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs8084.cs
blobc5861b515f685ef74165bff8ffa0918265c40f25
1 // CS8084: An argument to nameof operator cannot be method group with type arguments
2 // Line: 12
4 static class C
6 static void Foo<T> ()
10 static void Main ()
12 string s = nameof (Foo<int>);