solidity/test/libsolidity/semanticTests/constructor_with_params.sol
Daniel Kirchner 44da8507b1 Change default EVM version to Shanghai.
Co-authored-by: Rodrigo Q. Saramago <rodrigoqsaramago@gmail.com>
2023-05-08 16:34:23 +02:00

16 lines
243 B
Solidity

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