mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			328 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			328 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // compile-flags: -C no-prepopulate-passes
 | |
| #![crate_type = "lib"]
 | |
| #![feature(ffi_returns_twice)]
 | |
| 
 | |
| pub fn bar() { unsafe { foo() } }
 | |
| 
 | |
| extern "C" {
 | |
|     // CHECK: declare{{( dso_local)?}} void @foo(){{.*}}[[ATTRS:#[0-9]+]]
 | |
|     // CHECK: attributes [[ATTRS]] = { {{.*}}returns_twice{{.*}} }
 | |
|     #[ffi_returns_twice] pub fn foo();
 | |
| }
 | 
