rust/tests/ui/layout/thin-meta-implies-thin-ptr.rs

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

12 lines
171 B
Rust
Raw Normal View History

//@ check-pass
#![feature(ptr_metadata)]
use std::ptr::Thin;
fn main() {}
fn foo<T: ?Sized + Thin>(t: *const T) -> *const () {
unsafe { std::mem::transmute(t) }
}