mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			215 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			215 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_type="lib"]
 | |
| 
 | |
| pub struct Foo;
 | |
| 
 | |
| impl Foo {
 | |
|     //@ has const/struct.Foo.html '//*[@id="method.new"]//h4[@class="code-header"]' 'const unsafe fn new'
 | |
|     pub const unsafe fn new() -> Foo {
 | |
|         Foo
 | |
|     }
 | |
| }
 | 
