mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #25 from LianaHus/sol_strings_as_mapping_keys
added check for string as mapping key for local var.
This commit is contained in:
commit
714223f552
@ -5188,14 +5188,17 @@ BOOST_AUTO_TEST_CASE(storage_string_as_mapping_key_without_variable)
|
||||
char const* sourceCode = R"(
|
||||
contract Test {
|
||||
mapping(string => uint) data;
|
||||
function f() returns (uint) {
|
||||
data["abc"] = 2;
|
||||
return data["abc"];
|
||||
function f() returns (uint r, uint rl) {
|
||||
mapping(string => uint) dataLocal;
|
||||
dataLocal["abc"] = 2;
|
||||
rl = dataLocal["abc"];
|
||||
data["abc"] = 3;
|
||||
r = data["abc"];
|
||||
}
|
||||
}
|
||||
)";
|
||||
compileAndRun(sourceCode, 0, "Test");
|
||||
BOOST_CHECK(callContractFunction("f()") == encodeArgs(u256(2)));
|
||||
BOOST_CHECK(callContractFunction("f()") == encodeArgs(u256(3), u256(2)));
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_SUITE_END()
|
||||
|
Loading…
Reference in New Issue
Block a user