-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
A-resolveArea: Name/path resolution done by `rustc_resolve` specificallyArea: Name/path resolution done by `rustc_resolve` specificallyA-syntaxextArea: Syntax extensionsArea: Syntax extensions
Description
To reproduce this, go into syntax::ast
and change a use of Option
to option
. This resulted in a unresolved name : serialize_option
error. I think it would have been better to report that option
was an unresolved name first. (The particular use I changed was in item_impl
, but that's not checked in yet.)
It would be nice to report errors that don't involve macro-expanded code first, but I'm not sure how easy that would be.
Metadata
Metadata
Assignees
Labels
A-resolveArea: Name/path resolution done by `rustc_resolve` specificallyArea: Name/path resolution done by `rustc_resolve` specificallyA-syntaxextArea: Syntax extensionsArea: Syntax extensions