diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-12-06 17:21:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-06 17:21:56 +0100 |
| commit | f1e180451b2782efa1c31e634945da255070d340 (patch) | |
| tree | c340c24658ab20b19c647c3054d3d16530cfcd06 /compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | |
| parent | 6316ac83d770fb86dc581751b24cddf622376899 (diff) | |
| parent | 70fe624b3d82aee2d32908f3fe2216002a207846 (diff) | |
| download | rust-f1e180451b2782efa1c31e634945da255070d340.tar.gz rust-f1e180451b2782efa1c31e634945da255070d340.zip | |
Rollup merge of #116496 - estebank:question-method-chain-context, r=compiler-errors
Provide context when `?` can't be called because of `Result<_, E>`
When a method chain ending in `?` causes an E0277 because the expression's `Result::Err` variant doesn't have a type that can be converted to the `Result<_, E>` type parameter in the return type, provide additional context of which parts of the chain can and can't support the `?` operator.
```
error[E0277]: `?` couldn't convert the error to `String`
--> $DIR/question-mark-result-err-mismatch.rs:27:25
|
LL | fn bar() -> Result<(), String> {
| ------------------ expected `String` because of this
LL | let x = foo();
| ----- this has type `Result<_, String>`
...
LL | .map_err(|_| ())?;
| ---------------^ the trait `From<()>` is not implemented for `String`
| |
| this can't be annotated with `?` because it has type `Result<_, ()>`
|
= note: the question mark operation (`?`) implicitly performs a conversion on the error value using the `From` trait
= help: the following other types implement trait `From<T>`:
<String as From<char>>
<String as From<Box<str>>>
<String as From<Cow<'a, str>>>
<String as From<&str>>
<String as From<&mut str>>
<String as From<&String>>
= note: required for `Result<(), String>` to implement `FromResidual<Result<Infallible, ()>>`
```
Fix #72124.
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp')
0 files changed, 0 insertions, 0 deletions
