solidity/test/libsolidity/semanticTests/constructor/base_constructor_arguments.sol
2023-05-11 10:56:55 -05:00

24 lines
303 B
Solidity

contract BaseBase {
uint256 m_a;
constructor(uint256 a) {
m_a = a;
}
}
contract Base is BaseBase(7) {
constructor() {
m_a *= m_a;
}
}
contract Derived is Base {
function getA() public returns (uint256 r) {
return m_a;
}
}
// ----
// getA() -> 49