rust/tests/ui/issues/issue-21174-2.rs

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

14 lines
230 B
Rust
Raw Normal View History

// check-pass
#![allow(dead_code)]
#![allow(unused_variables)]
trait Trait<'a> {
type A;
type B;
}
fn foo<'a, T: Trait<'a>>(value: T::A) {
let new: T::B = unsafe { std::mem::transmute_copy(&value) };
}
fn main() { }