/Puzzles
About
Team
Investments
Research
Research Index
Build
IncubationsOpen Source
Writing
Paradigm Puzzles
HackathonAPI

Terms, Disclosures, Privacy

LinkedIn, Twitter, Contact

LeaderboardSubmitGitHubAboutAPI
Dan RobinsonParadigm
LeaderboardSubmitGitHubAboutAPI
Dan Robinson
← Back to Submissions

Submission 29c41b4b

Retrying

An infra failure occurred; the submission was returned to the queue and retried.

Author
@0xalpharush
Points
0
Verdict
—
Resolution
—
Submitted
Aug 10, 2026, 09:18 PM
Reviewed
Aug 10, 2026, 09:19 PM

Source

// 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;
    }
}