mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			206 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			206 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ check-pass
 | 
						|
 | 
						|
macro_rules! foo {
 | 
						|
    ($(: $p:path)? $(: $l:lifetime)? ) => { bar! {$(: $p)? $(: $l)? } };
 | 
						|
}
 | 
						|
 | 
						|
macro_rules! bar {
 | 
						|
    ($(: $p:path)? $(: $l:lifetime)? ) => {};
 | 
						|
}
 | 
						|
 | 
						|
foo! {: 'a }
 | 
						|
 | 
						|
fn main() {}
 |