mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			308 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			308 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ check-pass
 | 
						|
#![allow(dead_code)]
 | 
						|
struct Foo;
 | 
						|
 | 
						|
impl Foo {
 | 
						|
    fn bar(&mut self) -> bool { true }
 | 
						|
}
 | 
						|
 | 
						|
fn error(foo: &mut Foo) {
 | 
						|
    if let Some(_) = Some(true) {
 | 
						|
    } else if foo.bar() {}
 | 
						|
}
 | 
						|
 | 
						|
fn ok(foo: &mut Foo) {
 | 
						|
    if let Some(_) = Some(true) {
 | 
						|
    } else {
 | 
						|
        if foo.bar() {}
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |