mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 15:05:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			189 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			189 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
#![allow(dead_code)]
 | 
						|
 | 
						|
#[inline(please,no)] //~ ERROR malformed `inline` attribute
 | 
						|
fn a() {
 | 
						|
}
 | 
						|
 | 
						|
#[inline()] //~ ERROR malformed `inline` attribute
 | 
						|
fn b() {
 | 
						|
}
 | 
						|
 | 
						|
fn main() {
 | 
						|
    a();
 | 
						|
    b();
 | 
						|
}
 |