mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
368 B
Rust
20 lines
368 B
Rust
// 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) }
|
|
//~^ ERROR cannot transmute between types of different sizes, or dependently-sized types
|
|
}
|
|
|
|
fn main() {}
|