rust/tests/ui/regions/forall-wf-reflexive.rs
2023-01-11 09:32:08 +00:00

16 lines
212 B
Rust

// Test that we consider `for<'a> T: 'a` to be sufficient to prove
// that `for<'a> T: 'a`.
//
// check-pass
#![allow(warnings)]
fn self_wf1<T>()
where
for<'a> T: 'a,
{
self_wf1::<T>();
}
fn main() {}