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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
370 B
Rust
Raw Normal View History

//@ normalize-stderr-test: "\d+ bits" -> "N bits"
2018-08-10 22:46:59 +01:00
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() {}