mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
402 B
22 lines
402 B
// #dependency Issue3684.dep.cs |
|
using CrossAssemblyDep; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty |
|
{ |
|
public static class Issue3684 |
|
{ |
|
public interface IInterface |
|
{ |
|
string Name { get; set; } |
|
T Convert<T>(T input); |
|
} |
|
|
|
public class DerivedClass : BaseClass, IInterface |
|
{ |
|
T IInterface.Convert<T>(T input) |
|
{ |
|
return ((BaseClass)this).Convert<T>(input); |
|
} |
|
} |
|
} |
|
}
|
|
|