Sign in
rust
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
imports
/
import-after-macro-expand-11.rs
blob: 897c3001cc928da90a6321f601d642ab597d6767 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}