Skip to content

Commit bfb7e32

Browse files
authored
Add test named mapping keys solidity syntax (sc-forks#816)
1 parent ecefedf commit bfb7e32

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

test/integration/projects/solc-8/contracts/Contract_solc8.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ error InvalidSomeAddress(address someAddress);
66

77
contract ContractA {
88

9+
mapping(bytes32 key => uint256) public authorization;
910
address public someAddress;
1011

1112
function throwError(address _add) external {

test/integration/projects/solc-8/hardhat.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ require(__dirname + "/../plugins/nomiclabs.plugin");
33

44
module.exports = {
55
solidity: {
6-
version: "0.8.5"
6+
version: "0.8.21"
77
},
88
logger: process.env.SILENT ? { log: () => {} } : console,
99
};

0 commit comments

Comments
 (0)