mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			182 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			182 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| pub struct Foo;
 | |
| 
 | |
| // just so that `Foo` doesn't show up on `Bar`s sidebar
 | |
| pub mod bar {
 | |
|     pub trait Bar {}
 | |
| }
 | |
| 
 | |
| impl Foo {
 | |
|     pub fn new() -> Foo { Foo }
 | |
| }
 | |
| 
 | |
| impl bar::Bar for Foo {}
 | 
