E1003 Syntax Errors

Syntax

unclosed multi-line comment; add */

When this occurs

`/*` without matching `*/`

Example error message

error[E1003]: unclosed multi-line comment

How to fix

Add `*/` to close your multi-line comment.

Related errors