fuzzland / ityfuzz

Blazing Fast Bytecode-Level Hybrid Fuzzer for Smart Contracts
https://docs.ityfuzz.rs
MIT License
834 stars 134 forks source link

`vm.startPrank` is broken #427

Open shouc opened 7 months ago

shouc commented 7 months ago
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

import {Test, console2} from "forge-std/Test.sol";
import {XXX} from "../src/XXX.sol";

contract Inv1 is Test {
    XXX usdc;
    function setUp() public {
        vm.startPrank(address(0x1)); // <= reverts
    }
}