solidity/test/libsolidity/semanticTests/various/inline_member_init_inheritence.sol
2022-05-19 20:23:28 +02:00

26 lines
399 B
Solidity

contract Base {
constructor() {}
uint256 m_base = 5;
function getBMember() public returns (uint256 i) {
return m_base;
}
}
contract Derived is Base {
constructor() {}
uint256 m_derived = 6;
function getDMember() public returns (uint256 i) {
return m_derived;
}
}
// ====
// compileToEwasm: also
// ----
// getBMember() -> 5
// getDMember() -> 6