[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs1669-4.cs
blob273795f69a1bf839c37ab39c2a2b60c06a31d36a
1 // CS1669: __arglist is not valid in this context
2 // Line: 10
4 delegate object D (object o);
6 class C
8 public void Test ()
10 D d = delegate (__arglist) {
11 return this;