diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vhdl/vhdl-parse.adb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-parse.adb b/src/vhdl/vhdl-parse.adb index 9bae823b2..1d981b841 100644 --- a/src/vhdl/vhdl-parse.adb +++ b/src/vhdl/vhdl-parse.adb @@ -7998,6 +7998,11 @@ package body Vhdl.Parse is Scan; goto Again; + when Tok_Tick => + Unexpected ("statement"); + Resync_To_End_Of_Statement; + goto Again; + when others => return First_Stmt; end case; |