revive-integration 0.3.0

revive compiler integration test cases
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.24;

/* runner.json
{
  "differential": true,
  "actions": [
    {
      "Instantiate": {
        "code": {
          "Solidity": {
            "contract": "MemoryBounds"
          }
        }
      }
    },
    {
      "Call": {
        "dest": {
          "Instantiated": 0
        }
      }
    }
  ]
}
*/

contract MemoryBounds {
    fallback() external {
        assembly {
            // Accessing OOB offsets should always work when the length is 0.
            return(100000, 0)
        }
    }
}