mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +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() {}
 |