mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
196 B
Rust
12 lines
196 B
Rust
struct Thing<'a, Q:'a> {
|
|
x: &'a Q
|
|
}
|
|
|
|
fn thing<'a,Q>(x: &Q) -> Thing<'a,Q> {
|
|
Thing { x: x } //~ ERROR explicit lifetime required in the type of `x` [E0621]
|
|
}
|
|
|
|
fn main() {
|
|
thing(&());
|
|
}
|