rust-clippy/tests/ui/crashes/ice-4968.rs
2019-12-31 20:55:12 +09:00

18 lines
313 B
Rust

// check-pass
// Test for https://github.com/rust-lang/rust-clippy/issues/4968
trait Trait {
type Assoc;
}
use std::mem::{self, ManuallyDrop};
#[allow(unused)]
fn func<T: Trait>(slice: Vec<T::Assoc>) {
unsafe {
let _: Vec<ManuallyDrop<T::Assoc>> = mem::transmute(slice);
}
}
fn main() {}