mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
275 B
Solidity
9 lines
275 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
|
|
}
|
|
// ----
|
|
// TypeError 2144: (131-147): No matching declaration found after variable lookup.
|