mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			327 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			327 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// aux-build:meta-delim.rs
 | 
						|
// edition:2018
 | 
						|
// run-pass
 | 
						|
 | 
						|
// Tests that we can properly deserialize a macro with strange delimiters
 | 
						|
// See https://github.com/rust-lang/rust/pull/73569#issuecomment-650860457
 | 
						|
 | 
						|
extern crate meta_delim;
 | 
						|
 | 
						|
fn main() {
 | 
						|
    assert_eq!("a bunch of idents", meta_delim::meta_delim!(a bunch of idents));
 | 
						|
}
 |