mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
352 B
Plaintext
12 lines
352 B
Plaintext
error: lifetime may not live long enough
|
|
--> $DIR/issue-57280-1-flipped.rs:17:9
|
|
|
|
|
LL | fn foo<'a>(x: &'static u32) {
|
|
| -- lifetime `'a` defined here
|
|
LL | match x {
|
|
LL | <() as Foo<'a>>::C => { }
|
|
| ^^^^^^^^^^^^^^^^^^ type annotation requires that `'a` must outlive `'static`
|
|
|
|
error: aborting due to previous error
|
|
|