solidity/test/libsolidity/syntaxTests/inline_arrays/inline_array_of_mapping_type.sol

9 lines
170 B
Solidity
Raw Normal View History

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