mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-25 19:25:38 +00:00
11 lines
206 B
Rust
11 lines
206 B
Rust
trait Foo {
|
|
fn foo<'a>(x: &mut Vec<&u8>, y: &u8);
|
|
}
|
|
impl Foo for () {
|
|
fn foo(x: &mut Vec<&u8>, y: &u8) {
|
|
x.push(y);
|
|
//~^ ERROR lifetime may not live long enough
|
|
}
|
|
}
|
|
fn main() {}
|