Describe the bug
There is a parsing error with Const at the top of the module
To Reproduce
Code
Attribute VB_Name = "Test"
Option Explicit
Private Const IMPORT_DELAY As String = "00:00:05"

Note that removing the "Private" access modifier fixes the error. However the following still causes an error:
Attribute VB_Name = "Test"
Option Explicit
Const IMPORT_DELAY As String

Expected behavior
There shouldn't be an error