rust/tests/ui/traits/pointee-tail-is-generic.rs

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

30 lines
583 B
Rust
Raw Normal View History

// check-pass
2022-02-14 03:57:23 +00:00
// edition:2018
#![feature(ptr_metadata)]
2022-02-14 03:57:23 +00:00
#![feature(type_alias_impl_trait)]
type Opaque = impl std::future::Future;
fn opaque() -> Opaque {
async {}
}
fn a<T>() {
2022-02-14 03:57:23 +00:00
// type parameter T is known to be sized
is_thin::<T>();
// tail of ADT (which is a type param) is known to be sized
is_thin::<std::cell::Cell<T>>();
// opaque type is known to be sized
is_thin::<Opaque>();
}
fn a2<T: Iterator>() {
// associated type is known to be sized
is_thin::<T::Item>();
}
2022-02-14 03:57:23 +00:00
fn is_thin<T: std::ptr::Pointee<Metadata = ()>>() {}
fn main() {}