[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs1729-5.cs
blobc05c492886d8c59c47e8e577ff759c20008d2bbd
1 // CS1729: The type `C' does not contain a constructor that takes `2' arguments
2 // Line: 16
4 class C
6 public C (int i)
11 public class Blah
13 public static void Main ()
15 dynamic d = 1;
16 var r = new C (1, d);