aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/dataLocations/publicFunction/function_argument_location_specifier_test_public_calldata.sol
blob: efc92cf3fce988646cbf7d8e76a25fa8a21b0431 (plain) (blame)
1
2
3
4
5
contract test {
    function f(bytes calldata) public;
}
// ----
// TypeError: (31-36): Data location must be "memory" for parameter in function, but "calldata" was given.