rust/tests/ui/impl-trait/defining-use-captured-non-universal-region.statik.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
534 B
Plaintext
Raw Normal View History

2024-03-22 08:02:12 +00:00
error[E0792]: expected generic lifetime parameter, found `'static`
--> $DIR/defining-use-captured-non-universal-region.rs:9:18
2024-03-18 16:03:18 +00:00
|
2024-03-22 08:02:12 +00:00
LL | fn foo<'a>() -> impl Sized + 'a {
| -- cannot use static lifetime; use a bound lifetime instead or remove the lifetime parameter from the opaque type
LL | #[cfg(statik)]
2024-03-18 16:03:18 +00:00
LL | let i: i32 = foo::<'static>();
| ^^^^^^^^^^^^^^^^
2024-03-22 08:02:12 +00:00
error: aborting due to 1 previous error
2024-03-18 16:03:18 +00:00
2024-03-22 08:02:12 +00:00
For more information about this error, try `rustc --explain E0792`.