mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			440 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			440 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ run-pass
 | 
						|
//@ ignore-cross-compile (needs dylibs and compiletest doesn't have a more specific header)
 | 
						|
//@ aux-build:issue-13560-1.rs
 | 
						|
//@ aux-build:issue-13560-2.rs
 | 
						|
//@ aux-build:issue-13560-3.rs
 | 
						|
 | 
						|
// Regression test for issue #13560, the test itself is all in the dependent
 | 
						|
// libraries. The fail which previously failed to compile is the one numbered 3.
 | 
						|
 | 
						|
extern crate issue_13560_2 as t2;
 | 
						|
extern crate issue_13560_3 as t3;
 | 
						|
 | 
						|
fn main() {}
 |