Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
underscore-lifetime
/
where-clause-trait-impl-region-2015.fixed
blob: 8d9ec9dd74756265e984be822144b66bce09ec8a [
file
] [
log
] [
blame
]
//@ 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() {}