Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
imports
/
import-after-macro-expand-9.rs
blob: 5caac06e7b9844a97bc12751976c954103572140 [
file
] [
log
] [
blame
]
//@ check-pass
use
crate
::
b
::*;
mod
b
{
pub
mod
http
{
pub
struct
HeaderMap
;
}
pub
use
self
::
http
::*;
#[
derive
(
Debug
)]
pub
struct
HeaderMap
;
}
fn
main
()
{
let
h
:
crate
::
b
::
HeaderMap
=
HeaderMap
;
}