mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-11-04 07:17:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			418 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			418 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// @has 'issue_76501/fn.bloop.html' '//pre' 'pub const fn bloop() -> i32'
 | 
						|
/// A useless function that always returns 1.
 | 
						|
pub const fn bloop() -> i32 {
 | 
						|
    1
 | 
						|
}
 | 
						|
 | 
						|
/// A struct.
 | 
						|
pub struct Struct {}
 | 
						|
 | 
						|
impl Struct {
 | 
						|
    // @has 'issue_76501/struct.Struct.html' '//*[@class="method"]' \
 | 
						|
    // 'pub const fn blurp() -> i32'
 | 
						|
    /// A useless function that always returns 1.
 | 
						|
    pub const fn blurp() -> i32 {
 | 
						|
        1
 | 
						|
    }
 | 
						|
}
 |