logos icon indicating copy to clipboard operation
logos copied to clipboard

Merging two reserved nodes #2

Open michael-2956 opened this issue 2 years ago • 0 comments

Code:

#[derive(Logos)]
enum Token {
    #[regex(r".*->.+\[", logos::skip)]
    #[error]
    Error,
    #[regex(r"->")]
    Arrow,
}

Got this error: Merging two reserved nodes! This is a bug, please report it: ... Reporting :)

michael-2956 avatar Jul 24 '22 18:07 michael-2956