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

17 lines
302 B
Solidity

contract Creator {
uint256 public r;
address public ch;
constructor(address[3] memory s, uint256 x) {
r = x;
ch = s[2];
}
}
// ----
// constructor(): 1, 2, 3, 4 ->
// gas irOptimized: 129013
// gas legacy: 176789
// gas legacyOptimized: 129585
// r() -> 4
// ch() -> 3