aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/types/mapping/argument_internal.sol
blob: 395f58088f1affc64b3d98ca4b7093b54ffdb814 (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) internal pure {
    }
}
// ----
// TypeError: (89-110): Type is required to live outside storage.