mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
19 lines
235 B
Rust
19 lines
235 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() {}
|