mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
265 B
Solidity
9 lines
265 B
Solidity
function suffix(string memory) pure returns (int) {}
|
|
function suffix(bytes memory) pure returns (int) {}
|
|
|
|
contract C {
|
|
int a = hex"abcd" suffix; // TODO: Should match only bytes
|
|
}
|
|
// ----
|
|
// DeclarationError 7920: (141-147): Identifier not found or not unique.
|