solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/474_storage_location_non_array_or_struct_disallowed_is_not_fatal.sol

8 lines
166 B
Solidity
Raw Normal View History

contract C {
function f(uint storage a) public {
a = f;
}
}
// ----
// TypeError: (28-42): Data location can only be given for array or struct types.