mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
44da8507b1
Co-authored-by: Rodrigo Q. Saramago <rodrigoqsaramago@gmail.com>
16 lines
243 B
Solidity
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
|