mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-11-04 07:17:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			359 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			359 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// check-pass
 | 
						|
// aux-build:format-string-proc-macro.rs
 | 
						|
 | 
						|
extern crate format_string_proc_macro;
 | 
						|
 | 
						|
fn main() {
 | 
						|
    // While literal macros like `format_args!(concat!())` are not supposed to work with implicit
 | 
						|
    // captures, it should work if the whole invocation comes from a macro expansion (#106408).
 | 
						|
    format_string_proc_macro::format_args_captures!();
 | 
						|
}
 |