mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			181 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			181 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // compile-flags: -C no-prepopulate-passes -Z mir-opt-level=0
 | |
| 
 | |
| #![crate_type = "lib"]
 | |
| #![feature(fn_align)]
 | |
| 
 | |
| // CHECK: align 16
 | |
| #[no_mangle]
 | |
| #[repr(align(16))]
 | |
| pub fn fn_align() {}
 | 
