mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
19 lines
237 B
Rust
19 lines
237 B
Rust
//@ check-pass
|
|
//@ aux-build:issue-112831-aux.rs
|
|
|
|
extern crate issue_112831_aux;
|
|
use issue_112831_aux::Zeroable;
|
|
|
|
mod z {
|
|
pub trait Zeroable {}
|
|
}
|
|
|
|
use z::*;
|
|
|
|
mod pod {
|
|
use super::*;
|
|
pub trait Pod: Zeroable {}
|
|
}
|
|
|
|
fn main() {}
|