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