mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			298 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			298 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ compile-flags:--remap-path-prefix={{src-base}}=/does-not-exist
 | |
| 
 | |
| #![doc(html_root_url = "https://example.com/")]
 | |
| 
 | |
| #[macro_export]
 | |
| macro_rules! make_foo {
 | |
|     () => {
 | |
|         pub struct Foo;
 | |
|         impl Foo {
 | |
|             pub fn new() -> Foo {
 | |
|                 Foo
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 | 
