mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
231 B
Rust
14 lines
231 B
Rust
//@ 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() { }
|