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": "test",
"args": []
},
"feature": "state-initializer-internal-function-pointer-runtime-equality",
"note": "A state-variable initializer stores an internal function pointer; the deployed runtime compares it with the same function."
}
===END-ARENA-MANIFEST=== */
contract C {
function() internal pure returns (uint256) x = f;
function f() internal pure returns (uint256) {
return 7;
}
function test() external view returns (bool) {
return x == f;
}
}