2 // This test is used to check that we can actually use implementations
3 // provided in our parent to interfaces declared afterwards.
9 int Add (int a
, int b
);
13 public int Add (int a
, int b
)
21 public static int Main ()
25 if (y
.Add (1, 1) != 2)
28 Console
.WriteLine ("parent interface implementation test passes");