2 // This test checks if we implement all the interfaces inherited
13 interface IC
: IA
, IB
{
22 public void A () { a = true; }
23 public void B () { b = true; }
24 public void C () { c = true; }
35 public void A () { a = true; System.Console.WriteLine ("A"); }
36 public void B () { b = true; }
37 public void C () { c = true; }