mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			305 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			305 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// Check that cyclic glob imports are allowed with underscore imports
 | 
						|
 | 
						|
// check-pass
 | 
						|
 | 
						|
#![allow(noop_method_call)]
 | 
						|
 | 
						|
mod x {
 | 
						|
    pub use crate::y::*;
 | 
						|
    pub use std::ops::Deref as _;
 | 
						|
}
 | 
						|
 | 
						|
mod y {
 | 
						|
    pub use crate::x::*;
 | 
						|
    pub use std::ops::Deref as _;
 | 
						|
}
 | 
						|
 | 
						|
pub fn main() {
 | 
						|
    use x::*;
 | 
						|
    (&0).deref();
 | 
						|
}
 |