solidity/test/libsolidity/semanticTests/constructor_inheritance_init_order.sol

18 lines
253 B
Solidity
Raw Normal View History

contract A {
uint x;
2020-06-23 12:14:24 +00:00
constructor() {
x = 42;
}
function f() public returns(uint256) {
return x;
}
}
contract B is A {
uint public y = f();
}
// ====
// compileViaYul: true
// ----
// constructor() ->
// y() -> 42