rustc/tests/ui/underscore-lifetime/where-clause-trait-impl-region-2015.fixed
2024-05-23 21:15:29 +02:00

15 lines
227 B
Plaintext

// run-rustfix
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() {}