solidity/test/libsolidity/semanticTests/constructor_with_params_inheritance.sol
2020-07-07 12:16:18 +02:00

19 lines
304 B
Solidity

contract C {
uint public i;
uint public k;
constructor(uint newI, uint newK) {
i = newI;
k = newK;
}
}
contract D is C {
constructor(uint newI, uint newK) C(newI, newK + 1) {}
}
// ====
// compileViaYul: also
// ----
// constructor(): 2, 0 ->
// i() -> 2
// k() -> 1