Skip to content

Commit 5b7e1ea

Browse files
authored
Unrolled build for rust-lang#125640
Rollup merge of rust-lang#125640 - fmease:plz-no-stringify, r=estebank Don't suggest turning non-char-literal exprs of ty `char` into string literals Fixes rust-lang#125595. Fixes rust-lang#125081. r? estebank (rust-lang#122217) or compiler
2 parents c0d6003 + 27cdc0d commit 5b7e1ea

File tree

6 files changed

+66
-11
lines changed

6 files changed

+66
-11
lines changed

compiler/rustc_infer/src/infer/error_reporting/mod.rs

+9-4
Original file line numberDiff line numberDiff line change
@@ -2102,10 +2102,15 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
21022102
// If a string was expected and the found expression is a character literal,
21032103
// perhaps the user meant to write `"s"` to specify a string literal.
21042104
(ty::Ref(_, r, _), ty::Char) if r.is_str() => {
2105-
suggestions.push(TypeErrorAdditionalDiags::MeantStrLiteral {
2106-
start: span.with_hi(span.lo() + BytePos(1)),
2107-
end: span.with_lo(span.hi() - BytePos(1)),
2108-
})
2105+
if let Ok(code) = self.tcx.sess().source_map().span_to_snippet(span)
2106+
&& code.starts_with("'")
2107+
&& code.ends_with("'")
2108+
{
2109+
suggestions.push(TypeErrorAdditionalDiags::MeantStrLiteral {
2110+
start: span.with_hi(span.lo() + BytePos(1)),
2111+
end: span.with_lo(span.hi() - BytePos(1)),
2112+
});
2113+
}
21092114
}
21102115
// For code `if Some(..) = expr `, the type mismatch may be expected `bool` but found `()`,
21112116
// we try to suggest to add the missing `let` for `if let Some(..) = expr`

tests/crashes/125081.rs

-7
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// issue: rust-lang/rust#125081
2+
3+
fn main() {
4+
let _: &str = 'β;
5+
//~^ ERROR expected `while`, `for`, `loop` or `{` after a label
6+
//~| ERROR mismatched types
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
error: expected `while`, `for`, `loop` or `{` after a label
2+
--> $DIR/str-as-char-butchered.rs:4:21
3+
|
4+
LL | let _: &str = 'β;
5+
| ^ expected `while`, `for`, `loop` or `{` after a label
6+
|
7+
help: add `'` to close the char literal
8+
|
9+
LL | let _: &str = 'β';
10+
| +
11+
12+
error[E0308]: mismatched types
13+
--> $DIR/str-as-char-butchered.rs:4:19
14+
|
15+
LL | let _: &str = 'β;
16+
| ---- ^^ expected `&str`, found `char`
17+
| |
18+
| expected due to this
19+
20+
error: aborting due to 2 previous errors
21+
22+
For more information about this error, try `rustc --explain E0308`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Don't suggest double quotes when encountering an expr of type `char` where a `&str`
2+
// is expected if the expr is not a char literal.
3+
// issue: rust-lang/rust#125595
4+
5+
fn main() {
6+
let _: &str = ('a'); //~ ERROR mismatched types
7+
let token = || 'a';
8+
let _: &str = token(); //~ ERROR mismatched types
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
error[E0308]: mismatched types
2+
--> $DIR/str-as-char-non-lit.rs:6:19
3+
|
4+
LL | let _: &str = ('a');
5+
| ---- ^^^^^ expected `&str`, found `char`
6+
| |
7+
| expected due to this
8+
9+
error[E0308]: mismatched types
10+
--> $DIR/str-as-char-non-lit.rs:8:19
11+
|
12+
LL | let _: &str = token();
13+
| ---- ^^^^^^^ expected `&str`, found `char`
14+
| |
15+
| expected due to this
16+
17+
error: aborting due to 2 previous errors
18+
19+
For more information about this error, try `rustc --explain E0308`.

0 commit comments

Comments
 (0)