Added missing keyword unicode to Lexer

This commit is contained in:
Matheus Aguiar
2023-03-28 13:51:43 -03:00
parent 7974a3cf7c
commit 4aa310034c
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'