1 2 3 4 5
contract Base { constructor(uint) public {} } contract Derived is Base(2) { } contract Derived2 is Base, Derived {}