taiki-e/pin-project-lite

Support lifetime bounds in where clauses

taiki-e opened this issue · 0 comments

Refs: #7

// TODO(#7): where clause does not support yet.
// pin_project! {
// pub struct Struct3<T>
// where
// T: 'static,
// {
// field: T,
// }
// }
// trait Static: 'static {}
// impl<T> Static for Struct3<T> {}