rust/tests/ui/imports/import-after-macro-expand-10.rs

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

18 lines
233 B
Rust
Raw Normal View History

//@ check-pass
mod b {
pub mod http {
pub struct HeaderMap;
}
pub use self::http::*;
#[derive(Debug)]
pub struct HeaderMap;
}
use crate::b::*;
fn main() {
let h: crate::b::HeaderMap = HeaderMap;
}