[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0534-7.cs
blob665e6686328fcea4c9604987e501b5554c951102
1 // CS0534: `B' does not implement inherited abstract member `A<int>.set_Prop(int)'
2 // Line: 13
4 abstract class A<T>
6 public abstract void set_Prop (int value);
8 public virtual T Prop {
9 set { }
13 class B : A<int>
15 public override int Prop {
16 set { }