contracts/lib/forge-std/test/compilation/CompilationScript.sol 409 B raw
1
// SPDX-License-Identifier: MIT
2
pragma solidity >=0.6.2 <0.9.0;
3
4
pragma experimental ABIEncoderV2;
5
6
import {Script} from "../../src/Script.sol";
7
8
// The purpose of this contract is to benchmark compilation time to avoid accidentally introducing
9
// a change that results in very long compilation times with via-ir. See https://github.com/foundry-rs/forge-std/issues/207
10
contract CompilationScript is Script {}