E1003 Lexer Errors
unclosed-comment
multi-line comment not closed
When this occurs
`/*` without matching `*/`
Example error message
error[E1003]:
unclosed multi-line comment
How to fix
Add `*/` to close your multi-line comment.
multi-line comment not closed
`/*` without matching `*/`
Add `*/` to close your multi-line comment.