[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs1066-3.cs
blob86fb46944f2d4167052724e1ed833d4075001dc0
1 // CS1066: The default value specified for optional parameter `x' will never be used
2 // Line: 12
3 // Compiler options: -warnaserror
5 interface I
7 void Method (int i);
10 class C : I
12 void I.Method (int x = 9)