[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0118-4.cs
blobeaa9ad291a914eb146530d123418d90a8ada45f9
1 // CS0118: `x.a.B' is a `property' but a `type' was expected
2 // Line: 9
4 using System;
6 namespace x
8 class a
10 bool B { set {} }
12 void Test (B b) {}