mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			295 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			295 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // aux-build:issue-99734-aux.rs
 | |
| // build-aux-docs
 | |
| // ignore-cross-compile
 | |
| 
 | |
| #![crate_name = "foo"]
 | |
| 
 | |
| #[macro_use]
 | |
| extern crate issue_99734_aux;
 | |
| 
 | |
| pub use issue_99734_aux::*;
 | |
| 
 | |
| // @count foo/index.html '//a[@class="fn"][@title="foo::main fn"]' 1
 | |
| 
 | |
| extern "C" {
 | |
|     pub fn main() -> std::ffi::c_int;
 | |
| }
 | 
