aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/types/mapping/argument_private.sol
blob: 0360514ea5d19c405a2858eccb44afae1a65e2ed (plain) (blame)
1
2
3
4
5
6
7
// This is expected to fail now, but may work in the future.
contract C {
    function f(mapping(uint => uint) storage) private pure {
    }
}
// ----
// TypeError: (89-110): Type is required to live outside storage.