mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			305 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			305 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // This test ensures that warnings are working as expected for "custom_code_classes_in_docs"
 | |
| // feature.
 | |
| 
 | |
| #![deny(warnings)]
 | |
| #![feature(no_core)]
 | |
| #![no_core]
 | |
| 
 | |
| /// ```{class="}
 | |
| /// main;
 | |
| /// ```
 | |
| //~^^^ ERROR unclosed quote string
 | |
| //~| ERROR unclosed quote string
 | |
| /// ```"
 | |
| /// main;
 | |
| /// ```
 | |
| pub fn foo() {}
 | 
