mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-21 16:59:05 +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() {}
|