[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs1739-4.cs
blobab18a009bebd352dbfcb445795defd5fe9f7a249
1 // CS1739: The best overloaded method match for `Program.M(int, int, int)' does not contain a parameter named `whatever'
2 // Line: 8
4 public class Program
6 public static void Main ()
8 M (z: 1, whatever: 0);
11 void M (int x = 0, int y = 0, int z = 0)