Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
imports
/
import-after-macro-expand-11.rs
blob: 897c3001cc928da90a6321f601d642ab597d6767 [
file
] [
log
] [
blame
]
//@ check-pass
#[
derive
(
Debug
)]
struct
H
;
mod
p
{
use
super
::*;
#[
derive
(
Clone
)]
struct
H
;
mod
t
{
use
super
::*;
fn
f
()
{
let
h
:
crate
::
p
::
H
=
H
;
}
}
}
fn
main
()
{}