W0001: feedback clause is shadowed by an earlier clause
Generated from rellum-diagnostics/src/db.rs.
Explanation
Feedback clauses are checked in order. If an earlier clause already matches the same event set, a later overlapping clause can never be selected.
Common causes
- placing a broad on-clause before a more specific one
- duplicating a handler for the same event combination
Canonical fixes
- reorder or remove overlapping clauses so the intended case remains reachable