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.
19 lines
371 B
19 lines
371 B
namespace ICSharpCode.Decompiler.Tests.TestCases.ILPretty.Issue3442 |
|
{ |
|
public class Class : Interface |
|
{ |
|
private void M<T>() where T : Interface |
|
{ |
|
} |
|
|
|
void Interface.M<T>() |
|
{ |
|
//ILSpy generated this explicit interface implementation from .override directive in M |
|
this.M<T>(); |
|
} |
|
} |
|
public interface Interface |
|
{ |
|
void M<T>() where T : Interface; |
|
} |
|
}
|
|
|