10 lines
350 B
Plaintext
10 lines
350 B
Plaintext
|
error[E0262]: invalid lifetime parameter name: `'static`
|
||
|
--> $DIR/regions-name-static.rs:11:12
|
||
|
|
|
||
|
LL | struct Foo<'static> { //~ ERROR invalid lifetime parameter name: `'static`
|
||
|
| ^^^^^^^ 'static is a reserved lifetime name
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0262`.
|