mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			673 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			673 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| //@ compile-flags: --test --test-args=--test-threads=1 -Zunstable-options --edition 2024
 | |
| //@ normalize-stdout-test: "tests/rustdoc-ui" -> "$$DIR"
 | |
| //@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
 | |
| //@ normalize-stdout-test: ".rs:\d+:\d+" -> ".rs:$$LINE:$$COL"
 | |
| 
 | |
| /// ```
 | |
| /// let x = 12;
 | |
| /// ```
 | |
| ///
 | |
| /// This one should not be a merged doctest (because of `$crate`). The output
 | |
| /// will confirm it by displaying both merged and standalone doctest passes.
 | |
| ///
 | |
| /// ```
 | |
| /// macro_rules! bla {
 | |
| ///     () => {{
 | |
| ///         $crate::foo();
 | |
| ///     }}
 | |
| /// }
 | |
| ///
 | |
| /// fn foo() {}
 | |
| ///
 | |
| /// fn main() {
 | |
| ///     bla!();
 | |
| /// }
 | |
| /// ```
 | |
| pub struct Foo;
 | 
