mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
68afa32985
resolve: Turn the binding from `#[macro_export]` into a proper `Import` Continuation of https://github.com/rust-lang/rust/pull/91795. ```rust #[macro_export] macro_rules! m { /*...*/ } ``` is desugared to something like ```rust macro_rules! m { /*...*/ } // Non-modularized macro_rules item pub use m; // It's modularized reexport ``` This PR adjusts the internal representation to better match this model. |
||
---|---|---|
.. | ||
src | ||
Cargo.toml |