mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			288 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			288 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Regression test for #85461: MSVC sometimes fail to link with dead code and #[inline(always)]
 | |
| 
 | |
| //@ aux-build:inline_always_with_dead_code.rs
 | |
| extern crate inline_always_with_dead_code;
 | |
| 
 | |
| use inline_always_with_dead_code::{bar, baz};
 | |
| 
 | |
| fn main() {
 | |
|     bar::call_me();
 | |
|     baz::call_me();
 | |
| }
 | 
