mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
204 B
Solidity
8 lines
204 B
Solidity
function suffix(string memory s) pure returns (string memory) { return s; }
|
|
|
|
contract C {
|
|
uint x = "abcd" suffix "abcd";
|
|
}
|
|
// ----
|
|
// ParserError 2314: (117-123): Expected ';' but got 'StringLiteral'
|