mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			613 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			613 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
error: expected identifier, found `String`
 | 
						|
  --> $DIR/issue-37113.rs:4:16
 | 
						|
   |
 | 
						|
LL |         enum SomeEnum {
 | 
						|
   |              -------- while parsing this enum
 | 
						|
LL |             $( $t, )*
 | 
						|
   |                ^^ expected identifier
 | 
						|
...
 | 
						|
LL |     test_macro!(String,);
 | 
						|
   |     -------------------- in this macro invocation
 | 
						|
   |
 | 
						|
   = help: enum variants can be `Variant`, `Variant = <integer>`, `Variant(Type, ..., TypeN)` or `Variant { fields: Types }`
 | 
						|
   = note: this error originates in the macro `test_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
 | 
						|
 | 
						|
error: aborting due to 1 previous error
 | 
						|
 |