solidity/test/libsolidity/semanticTests/constructor_with_params.sol
2021-11-15 16:32:45 +01:00

18 lines
274 B
Solidity

contract C {
uint public i;
uint public k;
constructor(uint newI, uint newK) {
i = newI;
k = newK;
}
}
// ====
// compileViaYul: also
// ----
// constructor(): 2, 0 ->
// gas irOptimized: 104227
// gas legacy: 117158
// i() -> 2
// k() -> 0