mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-11-04 09:30:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			181 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			181 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// -C no-prepopulate-passes
 | 
						|
#![crate_type="staticlib"]
 | 
						|
 | 
						|
#[repr(C)]
 | 
						|
pub struct Foo(u64);
 | 
						|
 | 
						|
// CHECK: define {{.*}} @foo(
 | 
						|
#[no_mangle]
 | 
						|
pub extern "C" fn foo(_: Foo) -> Foo { loop {} }
 |