Rellum Rellum

E1011: expected specific identifier

Generated from rellum-diagnostics/src/db.rs.

Explanation

Some grammar positions require a particular identifier spelling. Currently this is used for event multiplicity syntax, where the parser expects the literal identifier multiplicity before the policy name.

Common causes

Canonical fixes

Before:

line = event(stdin_line!(), mode: collect)

After:

line = event(stdin_line!(), multiplicity: collect)

Code example

line = event(stdin_line!(), mode: collect)