solidity/test/cmdlineTests/standard_immutable_references/input.json

19 lines
397 B
JSON
Raw Normal View History

{
"language": "Solidity",
"sources": {
"a.sol": {
2020-12-01 13:53:08 +00:00
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\ncontract A { uint256 immutable x = 1 + 3; function f() public pure returns (uint256) { return x; } }"
}
},
"settings": {
"evmVersion": "petersburg",
"outputSelection": {
"*": {
"A": [
"evm.deployedBytecode.immutableReferences"
]
}
}
}
}