blob: 126f5ae107ff2017647f95e518f865a83a992ba7 [file] [log] [blame] [edit]
//@ 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() {}