mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			236 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			236 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ compile-flags: --test
 | |
| //@ check-test-line-numbers-match
 | |
| 
 | |
| pub mod bar;
 | |
| 
 | |
| /// This is a Foo;
 | |
| ///
 | |
| /// ```
 | |
| /// println!("baaaaaar");
 | |
| /// ```
 | |
| pub struct Foo;
 | |
| 
 | |
| /// This is a Bar;
 | |
| ///
 | |
| /// ```
 | |
| /// println!("fooooo");
 | |
| /// ```
 | |
| pub struct Bar;
 | 
