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

16 lines
224 B
Solidity

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