mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
199 B
Solidity
8 lines
199 B
Solidity
function unicode(string memory) pure suffix returns (string memory) {}
|
|
|
|
contract C {
|
|
string s = unicode"😃"unicode;
|
|
}
|
|
// ----
|
|
// ParserError 2314: (9-16): Expected identifier but got 'ILLEGAL'
|