Remove unnecessary !s for [DoesNotReturn] (dotnet/coreclr#26512)
[mono-project.git] / mcs / errors / cs0535-4.cs
blobec6e598682892284f0d474992943349914f3468c
1 // CS0535: `B' does not implement interface member `ITest2.GetName(string)'
2 // Line: 17
4 public interface ITest1 {
5 void GetName(string id);
8 public interface ITest2 {
9 void GetName(string id);
12 public class A : ITest1 {
13 void ITest1.GetName(string id) {
17 public class B : A, ITest2 {