mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			497 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			497 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//! This test used to ICE: rust-lang/rust#125914
 | 
						|
//! Instead of actually analyzing the erroneous patterns,
 | 
						|
//! we instead stop after typeck where errors are already
 | 
						|
//! reported.
 | 
						|
 | 
						|
enum AstKind<'ast> {
 | 
						|
    //~^ ERROR: `'ast` is never used
 | 
						|
    ExprInt,
 | 
						|
}
 | 
						|
 | 
						|
enum Foo {
 | 
						|
    Bar(isize),
 | 
						|
    Baz,
 | 
						|
}
 | 
						|
 | 
						|
enum Other {
 | 
						|
    Other1(Foo),
 | 
						|
    Other2(AstKind), //~ ERROR: missing lifetime specifier
 | 
						|
}
 | 
						|
 | 
						|
fn main() {
 | 
						|
    match Other::Other1(Foo::Baz) {
 | 
						|
        crate::Other::Other2(crate::Foo::Bar(..)) => {}
 | 
						|
    }
 | 
						|
}
 |