[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0535-7.cs
blob11a7670bc1ba84692339a538c72b5928093da72c
1 // CS0535: `CC' does not implement interface member `IA.Coordinate.set'
2 // Line: 33
4 using System;
6 public interface IA
8 object Coordinate {
9 get;
10 set;
14 public abstract class CA : IA
16 public abstract object Coordinate {
17 get;
18 set;
22 public partial class CB : CA
24 public override object Coordinate {
25 get {
26 throw new NotImplementedException ();
28 set {
33 public class CC : CB, IA
35 public new object Coordinate {
36 get {
37 throw new NotImplementedException ();