95fdb59ea6
Former-commit-id: b39a328747c2f3414dc52e009fb6f0aa80ca2492
15 lines
307 B
C#
15 lines
307 B
C#
namespace TestInterfaceImplementation
|
|
{
|
|
public class Class5 : Interface6
|
|
{
|
|
public int Method<TTT>()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public int Method()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
} |