solidity/test/libsolidity/syntaxTests/dataLocations/publicFunction/function_argument_location_specifier_test_public_calldata.sol
2020-05-26 10:51:13 +02:00

7 lines
213 B
Solidity

contract test {
function f(bytes calldata) public;
}
// ----
// TypeError: (0-56): Contract "test" should be marked as abstract.
// TypeError: (20-54): Functions without implementation must be marked virtual.