rust/tests/ui/issues/issue-32377.rs

20 lines
368 B
Rust
Raw Normal View History

2018-08-10 21:46:59 +00:00
// normalize-stderr-test "\d+ bits" -> "N bits"
use std::mem;
use std::marker::PhantomData;
trait Foo {
type Error;
}
struct Bar<U: Foo> {
stream: PhantomData<U::Error>,
}
fn foo<U: Foo>(x: [usize; 2]) -> Bar<U> {
unsafe { mem::transmute(x) }
2018-12-21 14:15:47 +00:00
//~^ ERROR cannot transmute between types of different sizes, or dependently-sized types
}
fn main() {}