solidity/test/libsolidity/semanticTests/constructor_with_params.sol

16 lines
232 B
Solidity

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