[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0535.cs
blobcfadd82b1a2743cc1f1e6b35eaf7981846528aeb
1 // CS0535: `Class' does not implement interface member `Interface.Method()'
2 // Line: 8
4 interface Interface {
5 void Method();
8 class Class: Interface {