aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/dataLocations/function_argument_location_specifier_test_library.sol
blob: 4348482aaf9ae88e32e07f549d362bf170e76974 (plain) (blame)
1
2
3
4
5
library test {
    function f(bytes calldata) public;
}
// ----
// TypeError: (30-35): Location cannot be calldata for non-external functions (remove the "calldata" keyword).