rust/tests/ui/underscore-lifetime/where-clause-trait-impl-region-2015.fixed
2024-02-16 20:02:50 +00:00

16 lines
249 B
Rust

//@ run-rustfix
#![allow(dead_code)]
trait WithType<T> {}
trait WithRegion<'a> { }
trait Foo { }
impl<T> Foo for Vec<T>
where
T: for<'a> WithType<&'a u32>
//~^ ERROR `&` without an explicit lifetime name cannot be used here
{ }
fn main() {}