[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0550.cs
blobe344c80b0e568e9d152472c24f31304a39c59ff4
1 // CS0550: `PropertyClass.PropertyInterface.Value.set' is an accessor not found in interface member `PropertyInterface.Value'
2 // Line: 13
4 interface PropertyInterface {
5 int Value { get; }
8 public class PropertyClass: PropertyInterface {
9 int PropertyInterface.Value {
10 get {
11 return 0;
13 set { }