mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			479 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			479 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| //@ compile-flags: --test --nocapture --check-cfg=cfg(feature,values("test")) -Z unstable-options
 | |
| //@ normalize-stderr-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
 | |
| //@ normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
 | |
| //@ normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
 | |
| 
 | |
| /// The doctest will produce a warning because feature invalid is unexpected
 | |
| /// ```
 | |
| /// #[cfg(feature = "invalid")]
 | |
| /// assert!(false);
 | |
| /// ```
 | |
| pub struct Foo;
 | 
