solidity/test/libsolidity/syntaxTests/types/mapping/library_argument_external.sol

7 lines
155 B
Solidity

library L {
function f(mapping(uint => uint) storage) external pure {
}
}
// ----
// TypeError: (27-48): Type is required to live outside storage.