mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			334 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			334 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
error: items in `extern` blocks without an `unsafe` qualifier cannot have safety qualifiers
 | 
						|
  --> $DIR/unsafe-on-extern-block-issue-126756.rs:6:5
 | 
						|
   |
 | 
						|
LL |     unsafe fn foo();
 | 
						|
   |     ^^^^^^^^^^^^^^^^
 | 
						|
   |
 | 
						|
help: add `unsafe` to this `extern` block
 | 
						|
   |
 | 
						|
LL | unsafe extern "C" {
 | 
						|
   | ++++++
 | 
						|
 | 
						|
error: aborting due to 1 previous error
 | 
						|
 |