mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-19 03:20:38 +00:00

Currently we always do this: ``` use rustc_fluent_macro::fluent_messages; ... fluent_messages! { "./example.ftl" } ``` But there is no need, we can just do this everywhere: ``` rustc_fluent_macro::fluent_messages! { "./example.ftl" } ``` which is shorter.
Please read the rustc-dev-guide chapter on Backend Agnostic Codegen.