a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
33 lines
289 B
C#
33 lines
289 B
C#
namespace B
|
|
{
|
|
using C;
|
|
|
|
partial class Test <T>
|
|
where T : IA, IB
|
|
{ }
|
|
}
|
|
|
|
namespace B
|
|
{
|
|
partial class Test <T>
|
|
where T : C.IB, C.IA
|
|
{ }
|
|
}
|
|
|
|
namespace B
|
|
{
|
|
partial class Test <T>
|
|
{ }
|
|
}
|
|
|
|
class X
|
|
{
|
|
public static void Main ()
|
|
{ }
|
|
}
|
|
|
|
namespace C {
|
|
interface IA { }
|
|
interface IB { }
|
|
}
|