rust/tests/ui/imports/import-after-macro-expand-1...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
323 B
Rust
Raw Normal View History

// check-pass
// similar as `import-after-macro-expand-6.rs`
use crate::a::HeaderMap;
mod b {
pub mod http {
pub struct HeaderMap;
}
pub use self::http::*;
#[derive(Debug)]
pub struct HeaderMap;
}
mod a {
pub use crate::b::*;
}
fn main() {
let h: crate::b::HeaderMap = HeaderMap;
}