2023-06-20 09:54:12 -05:00
|
|
|
//@ check-pass
|
|
|
|
//@ aux-build:issue-112831-aux.rs
|
|
|
|
|
2023-07-26 09:46:49 -05:00
|
|
|
mod z {
|
2023-06-20 09:54:12 -05:00
|
|
|
pub trait Zeroable {}
|
|
|
|
}
|
|
|
|
|
2023-07-26 09:46:49 -05:00
|
|
|
use z::*;
|
2023-06-20 09:54:12 -05:00
|
|
|
|
|
|
|
mod pod {
|
|
|
|
use super::*;
|
|
|
|
pub trait Pod: Zeroable {}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern crate issue_112831_aux;
|
|
|
|
use issue_112831_aux::Zeroable;
|
|
|
|
|
|
|
|
fn main() {}
|