{
    "Function": "mockFunctionWritesStorage",
    "File": "contracts/lib/openzeppelin-contracts/contracts/mocks/CallReceiverMock.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "sstore(uint256,uint256)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function mockFunctionWritesStorage(bytes32 slot, bytes32 value) public returns (string memory) {\n        assembly {\n            sstore(slot, value)\n        }\n        return \"0x1234\";\n    }"
}