solidity/test/libsolidity/syntaxTests/dataLocations/function_argument_location_specifier_test_non_reference_type.sol

6 lines
146 B
Solidity
Raw Normal View History

contract test {
function f(bytes4 memory) public;
}
// ----
// TypeError: (31-37): Data location can only be given for array or struct types.