mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-15 01:55:03 +00:00
10 lines
156 B
Rust
10 lines
156 B
Rust
struct Ref<'a, T: 'a> {
|
|
data: &'a T
|
|
}
|
|
|
|
fn foo<'a>(x: Ref<i32>, y: &mut Vec<Ref<'a, i32>>) {
|
|
y.push(x); //~ ERROR explicit lifetime
|
|
}
|
|
|
|
fn main() { }
|