solidity/test/libsolidity/semanticTests/constructor_with_params.sol
2022-05-19 20:23:28 +02:00

17 lines
251 B
Solidity

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