mirror of https://github.com/icsharpcode/ILSpy.git
5 changed files with 61 additions and 0 deletions
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
// #dependency Issue3684.dep.cs
|
||||
using CrossAssemblyDep; |
||||
|
||||
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty |
||||
{ |
||||
public static class Issue3684 |
||||
{ |
||||
public interface IInterface |
||||
{ |
||||
string Name { get; set; } |
||||
} |
||||
|
||||
public class DerivedClass : BaseClass, IInterface |
||||
{ |
||||
T IInterface.Convert<T>(T input) |
||||
{ |
||||
return ((BaseClass)this).Convert<T>(input); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
Loading…
Reference in new issue