solidity/test/libsolidity/syntaxTests/controlFlow/mappingReturn/named_err.sol

6 lines
208 B
Solidity
Raw Normal View History

contract C {
function f() internal pure returns (mapping(uint=>uint) storage r) { }
}
// ----
// TypeError: (53-82): This variable is of storage pointer type and can be returned without prior assignment.