Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
resolve
/
derive-macro-1.rs
blob: f4fbb1d2c7c1d7ebf73fe1978a90dd108740c96f [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ aux-build:issue-112831-aux.rs
mod
z
{
pub
trait
Zeroable
{}
}
use
z
::*;
mod
pod
{
use
super
::*;
pub
trait
Pod
:
Zeroable
{}
}
extern
crate issue_112831_aux
;
use
issue_112831_aux
::
Zeroable
;
fn
main
()
{}