2018-04-04 10:28:22 +00:00
|
|
|
contract Base {
|
|
|
|
constructor(uint) public { }
|
|
|
|
}
|
|
|
|
contract Base1 is Base(3) {}
|
|
|
|
contract Derived is Base, Base1 {
|
|
|
|
constructor(uint i) Base(i) public {}
|
|
|
|
}
|
|
|
|
// ----
|
2018-04-06 16:37:01 +00:00
|
|
|
// Warning: (138-145): Base constructor arguments given twice.
|