mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #14078 from ethereum/fix_missing_keyword_unicode
Fix missing keyword `unicode` in grammar
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
function unicode() returns {}
|
||||
|
||||
// ----
|
||||
// ParserError 2314: (9-16): Expected identifier but got 'ILLEGAL'
|
||||
@@ -0,0 +1,6 @@
|
||||
contract C
|
||||
{
|
||||
string unicode = "abc";
|
||||
}
|
||||
// ----
|
||||
// ParserError 2314: (24-31): Expected identifier but got 'ILLEGAL'
|
||||
Reference in New Issue
Block a user