solidity/test/cmdlineTests/output_selection_single_B1/input.json

22 lines
637 B
JSON
Raw Normal View History

2019-07-01 16:50:31 +00:00
{
"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 A1 { function a(uint x) public pure { assert(x > 0); } } contract A2 { function a(uint x) public pure { assert(x > 0); } }"
2019-07-01 16:50:31 +00:00
},
"b.sol": {
2020-12-01 13:53:08 +00:00
"content": "//SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\ncontract A1 { function b(uint x) public pure { assert(x > 0); } } contract B2 { function b(uint x) public pure { assert(x > 0); } }"
2019-07-01 16:50:31 +00:00
}
},
"settings": {
"evmVersion": "petersburg",
"outputSelection": {
"b.sol": {
"B2": [
"evm.bytecode.object"
]
}
}
}
}