mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			247 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			247 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ aux-build:lint_stability.rs
 | 
						|
//@ error-pattern: use of deprecated function
 | 
						|
 | 
						|
#![deny(deprecated)]
 | 
						|
#![allow(warnings)]
 | 
						|
 | 
						|
#[macro_use]
 | 
						|
extern crate lint_stability;
 | 
						|
 | 
						|
use lint_stability::*;
 | 
						|
 | 
						|
fn main() {
 | 
						|
    macro_test_arg_nested!(deprecated_text);
 | 
						|
}
 |