Merge pull request #14078 from ethereum/fix_missing_keyword_unicode

Fix missing keyword `unicode` in grammar
This commit is contained in:
Kamil Śliwak
2023-04-03 12:53:20 +02:00
committed by GitHub
3 changed files with 11 additions and 0 deletions
@@ -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'