mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
172 B
Solidity
7 lines
172 B
Solidity
function suffix(string memory) pure returns (string memory) {}
|
|
function suffix(bytes memory) pure returns (bytes memory) {}
|
|
|
|
contract C {
|
|
bytes a = hex"abcd" suffix;
|
|
}
|