blob: 45f2601d307c851264911584f6726fc7495ad12a (
plain)
1
2
3
4
5
6
7
8
|
// edition:2018
mod private { pub struct Pub; }
// Reexport built-in attribute without a DefId (requires Rust 2018).
pub use cfg_attr as attr;
// This export needs to be after the built-in attribute to trigger the bug.
pub use private::Pub as Renamed;
|