mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	 23ab1bda92
			
		
	
	
		23ab1bda92
		
	
	
	
	
		
			
			Migrate to a simplified safety analysis that does not use visibility. Closes https://github.com/rust-lang/project-safe-transmute/issues/15
		
			
				
	
	
		
			23 lines
		
	
	
		
			548 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			548 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-fail
 | |
| #![feature(transmutability)]
 | |
| 
 | |
| mod assert {
 | |
|     use std::mem::{Assume, BikeshedIntrinsicFrom};
 | |
| 
 | |
|     pub fn is_maybe_transmutable<Src, Dst>()
 | |
|     where
 | |
|         Dst: BikeshedIntrinsicFrom<Src, {
 | |
|             Assume {
 | |
|                 alignment: false,
 | |
|                 lifetimes: true,
 | |
|                 safety: true,
 | |
|                 validity: true,
 | |
|             }
 | |
|         }>
 | |
|     {}
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     assert::is_maybe_transmutable::<&'static [u8; 0], &'static [u16; 0]>(); //~ ERROR `&[u8; 0]` cannot be safely transmuted into `&[u16; 0]`
 | |
| }
 |