mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			313 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			313 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ needs-asm-support
 | 
						|
//@ run-rustfix
 | 
						|
 | 
						|
use std::arch::global_asm;
 | 
						|
 | 
						|
fn main() {}
 | 
						|
 | 
						|
global_asm!("", options(   raw));
 | 
						|
//~^ ERROR the `nomem` option cannot be used with `global_asm!`
 | 
						|
//~| ERROR the `readonly` option cannot be used with `global_asm!`
 | 
						|
//~| ERROR the `noreturn` option cannot be used with `global_asm!`
 |