Modify primary span label for E0308
The previous output was unintuitive to users.
This commit is contained in:
parent
006ca9b14d
commit
62ba3e70a1
383 changed files with 889 additions and 926 deletions
|
@ -2,7 +2,7 @@ error[E0308]: mismatched types
|
|||
--> $DIR/mismatched-types.rs:2:20
|
||||
|
|
||||
LL | let b: &[u8] = include_str!("file.txt");
|
||||
| ----- ^^^^^^^^^^^^^^^^^^^^^^^^ expected slice `[u8]`, found `str`
|
||||
| ----- ^^^^^^^^^^^^^^^^^^^^^^^^ expected `&[u8]`, found `&str`
|
||||
| |
|
||||
| expected due to this
|
||||
|
|
||||
|
@ -14,7 +14,7 @@ error[E0308]: mismatched types
|
|||
--> $DIR/mismatched-types.rs:3:19
|
||||
|
|
||||
LL | let s: &str = include_bytes!("file.txt");
|
||||
| ---- ^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `str`, found array `[u8; 0]`
|
||||
| ---- ^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `&str`, found `&[u8; 0]`
|
||||
| |
|
||||
| expected due to this
|
||||
|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue