solidity/test/libsolidity/syntaxTests/inline_arrays/inline_array_of_mapping_type.sol
2018-11-29 19:45:06 +01:00

9 lines
165 B
Solidity

contract C {
mapping(int => int) a;
function f() public {
[a];
}
}
// ----
// TypeError: (66-69): Type mapping(int256 => int256) is only valid in storage.