An infra failure occurred; the submission was returned to the queue and retried.
// SPDX-License-Identifier: MIT
pragma solidity 0.8.35;
/* ===ARENA-MANIFEST===
{
"deploy": {
"contract": "C",
"args": [],
"value": 0
},
"entry": {
"function": "run",
"args": [7],
"value": 0
},
"lane": "C",
"feature": "inline-fixed-array-literal-index",
"note": "Solc/EVM indexes the inline fixed-array literal and returns zero. Solidity-Lean fails checked-executable generation. Binding the identical literal to a memory local before indexing agrees."
}
===END-ARENA-MANIFEST=== */
contract C {
function run(uint256 x) external pure returns (uint256) {
return [uint256(0), x][0];
}
}