diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2024-08-12 22:57:14 +0000 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2024-08-21 16:40:15 +0000 |
| commit | f5bae722be1f81f70d92e30cec1930f7cefc6313 (patch) | |
| tree | 42a4ddc047523fae41d3e1323d09750a86c5adaa /compiler/rustc_interface/src | |
| parent | 4d5b3b196284aded6ae99d12bcf149ffdc8ef379 (diff) | |
| download | rust-f5bae722be1f81f70d92e30cec1930f7cefc6313.tar.gz rust-f5bae722be1f81f70d92e30cec1930f7cefc6313.zip | |
Point at explicit `'static` obligations on a trait
Given `trait Any: 'static` and a `struct` with a `Box<dyn Any + 'a>` field, point at the `'static` bound in `Any` to explain why `'a: 'static`.
```
error[E0478]: lifetime bound not satisfied
--> f202.rs:2:12
|
2 | value: Box<dyn std::any::Any + 'a>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: lifetime parameter instantiated with the lifetime `'a` as defined here
--> f202.rs:1:14
|
1 | struct Hello<'a> {
| ^^
note: but lifetime parameter must outlive the static lifetime
--> /home/gh-estebank/rust/library/core/src/any.rs:113:16
|
113 | pub trait Any: 'static {
| ^^^^^^^
```
Partially address #33652.
Diffstat (limited to 'compiler/rustc_interface/src')
0 files changed, 0 insertions, 0 deletions
