mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
262 B
Solidity
8 lines
262 B
Solidity
contract C {
|
|
function g() public pure returns (bytes memory) {
|
|
return bytes.concat;
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 6359: (82-94): Return argument type function () pure returns (bytes memory) is not implicitly convertible to expected type bytes memory.
|