1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
interface one { void op_one(); }; interface two : one { void op_two(); }; interface three : one { void op_three(); }; interface four : two, three { void op_four(); }; interface five : four, three, two { void op_five(); };