solidity/test/libsolidity/semanticTests/constructor_with_params_inheritance_2.sol

16 lines
224 B
Solidity
Raw Normal View History

contract C {
uint public i;
uint public k;
2020-06-23 12:14:24 +00:00
constructor(uint newI, uint newK) {
i = newI;
k = newK;
}
}
contract D is C(2, 1) {}
// ====
// compileViaYul: also
// ----
// i() -> 2
// k() -> 1