Files
openzeppelin-contracts/certora/munged/mocks/BadBeacon.sol
2022-03-03 12:42:16 -08:00

12 lines
220 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract BadBeaconNoImpl {}
contract BadBeaconNotContract {
function implementation() external pure returns (address) {
return address(0x1);
}
}