mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
277 B
Solidity
9 lines
277 B
Solidity
function suffix(string memory) pure suffix returns (string memory) {}
|
|
function suffix(bytes memory) pure suffix returns (bytes memory) {}
|
|
|
|
contract C {
|
|
bytes a = hex"abcd" suffix;
|
|
}
|
|
// ----
|
|
// TypeError 2144: (176-182): No matching declaration found after variable lookup.
|