| 1 | // SPDX-License-Identifier: MIT |
| 2 | pragma solidity >=0.6.2 <0.9.0; |
| 3 | |
| 4 | pragma experimental ABIEncoderV2; |
| 5 | |
| 6 | import {ScriptBase} 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 CompilationScriptBase is ScriptBase {} |