mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			223 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			223 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// aux-build:two_macros.rs
 | 
						|
 | 
						|
#![feature(macro_reexport)] //~ ERROR feature has been removed
 | 
						|
 | 
						|
#[macro_reexport(macro_one)] //~ ERROR cannot find attribute `macro_reexport` in this scope
 | 
						|
extern crate two_macros;
 | 
						|
 | 
						|
fn main() {}
 |