mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			179 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			179 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ proc-macro: derive-b.rs
 | 
						|
 | 
						|
#![allow(warnings)]
 | 
						|
 | 
						|
#[macro_use]
 | 
						|
extern crate derive_b;
 | 
						|
 | 
						|
#[derive(B)]
 | 
						|
struct A {
 | 
						|
    a: &u64
 | 
						|
//~^ ERROR: missing lifetime specifier
 | 
						|
}
 | 
						|
 | 
						|
fn main() {
 | 
						|
}
 |