Code has been added to clipboard!
Managing Arguments With Solidity Inheritance
Example
contract Derived2 is Base {
constructor(uint _y) Base(_y * _y) public {}
}
Code has been added to clipboard!
contract Derived2 is Base {
constructor(uint _y) Base(_y * _y) public {}
}