rust/tests/ui/transmute/transmute-fat-pointers.rs
David Tolnay 5bbf0a8306
Revert "Auto merge of #113166 - moulins:ref-niches-initial, r=oli-obk"
This reverts commit 557359f925, reversing
changes made to 1e6c09a803.
2023-07-21 22:35:57 -07:00

34 lines
807 B
Rust

// normalize-stderr-test "\d+ bits" -> "N bits"
// Tests that are conservative around thin/fat pointer mismatches.
#![allow(dead_code)]
use std::mem::transmute;
fn a<T, U: ?Sized>(x: &[T]) -> &U {
unsafe { transmute(x) } //~ ERROR cannot transmute between types of different sizes
}
fn b<T: ?Sized, U: ?Sized>(x: &T) -> &U {
unsafe { transmute(x) } //~ ERROR cannot transmute between types of different sizes
}
fn c<T, U>(x: &T) -> &U {
unsafe { transmute(x) }
}
fn d<T, U>(x: &[T]) -> &[U] {
unsafe { transmute(x) }
}
fn e<T: ?Sized, U>(x: &T) -> &U {
unsafe { transmute(x) } //~ ERROR cannot transmute between types of different sizes
}
fn f<T, U: ?Sized>(x: &T) -> &U {
unsafe { transmute(x) } //~ ERROR cannot transmute between types of different sizes
}
fn main() { }