solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/473_storage_location_non_array_or_struct_disallowed.sol

6 lines
185 B
Solidity
Raw Normal View History

contract C {
function f(uint storage a) public { }
}
// ----
2018-08-07 17:12:49 +00:00
// TypeError: (28-42): Data location can only be specified for array, struct or mapping types, but "storage" was given.