mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
15 lines
227 B
Plaintext
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() {}
|