13 interface IC
: IA
, IB
{}
15 interface IE
: ICloneable
, IDisposable
{
36 public Object
Clone () {
39 public void Dispose () {}
51 static int Test(IC n
) {
53 if (((IA
)n
).Add(0) != 5)
56 if (((IB
)n
).Add(0) != 6)
63 static void Test2(IE ie
) {
65 object o
= ie
.Clone();