Skip to content

Commit 864368a

Browse files
committed
Fix wrong span for trait selection failure error reporting
1 parent a5e2eca commit 864368a

File tree

4 files changed

+83
-0
lines changed

4 files changed

+83
-0
lines changed

compiler/rustc_trait_selection/src/traits/error_reporting/mod.rs

+8
Original file line numberDiff line numberDiff line change
@@ -2994,6 +2994,14 @@ impl<'tcx> InferCtxtPrivExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
29942994
unsatisfied_const: bool,
29952995
) {
29962996
let body_def_id = obligation.cause.body_id;
2997+
let span = if let ObligationCauseCode::BinOp { rhs_span: Some(rhs_span), .. } =
2998+
obligation.cause.code()
2999+
{
3000+
*rhs_span
3001+
} else {
3002+
span
3003+
};
3004+
29973005
// Try to report a help message
29983006
if is_fn_trait
29993007
&& let Ok((implemented_kind, params)) = self.type_implements_fn_trait(

tests/ui/dst/issue-113447.fixed

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// run-rustfix
2+
3+
pub struct Bytes;
4+
5+
impl Bytes {
6+
pub fn as_slice(&self) -> &[u8] {
7+
todo!()
8+
}
9+
}
10+
11+
impl PartialEq<[u8]> for Bytes {
12+
fn eq(&self, other: &[u8]) -> bool {
13+
self.as_slice() == other
14+
}
15+
}
16+
17+
impl PartialEq<Bytes> for &[u8] {
18+
fn eq(&self, other: &Bytes) -> bool {
19+
*other == **self
20+
}
21+
}
22+
23+
fn main() {
24+
let _ = &[0u8] == &[0xAA][..]; //~ ERROR can't compare `&[u8; 1]` with `[{integer}; 1]`
25+
}

tests/ui/dst/issue-113447.rs

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// run-rustfix
2+
3+
pub struct Bytes;
4+
5+
impl Bytes {
6+
pub fn as_slice(&self) -> &[u8] {
7+
todo!()
8+
}
9+
}
10+
11+
impl PartialEq<[u8]> for Bytes {
12+
fn eq(&self, other: &[u8]) -> bool {
13+
self.as_slice() == other
14+
}
15+
}
16+
17+
impl PartialEq<Bytes> for &[u8] {
18+
fn eq(&self, other: &Bytes) -> bool {
19+
*other == **self
20+
}
21+
}
22+
23+
fn main() {
24+
let _ = &[0u8] == [0xAA]; //~ ERROR can't compare `&[u8; 1]` with `[{integer}; 1]`
25+
}

tests/ui/dst/issue-113447.stderr

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
error[E0277]: can't compare `&[u8; 1]` with `[{integer}; 1]`
2+
--> $DIR/issue-113447.rs:24:20
3+
|
4+
LL | let _ = &[0u8] == [0xAA];
5+
| ^^ no implementation for `&[u8; 1] == [{integer}; 1]`
6+
|
7+
= help: the trait `PartialEq<[{integer}; 1]>` is not implemented for `&[u8; 1]`
8+
= help: the following other types implement trait `PartialEq<Rhs>`:
9+
<[A; N] as PartialEq<[B; N]>>
10+
<[A; N] as PartialEq<[B]>>
11+
<[A; N] as PartialEq<&[B]>>
12+
<[A; N] as PartialEq<&mut [B]>>
13+
<[T] as PartialEq<Vec<U, A>>>
14+
<[A] as PartialEq<[B]>>
15+
<[B] as PartialEq<[A; N]>>
16+
<&[u8] as PartialEq<Bytes>>
17+
and 4 others
18+
help: convert the array to a `&[u8]` slice instead
19+
|
20+
LL | let _ = &[0u8] == &[0xAA][..];
21+
| + ++++
22+
23+
error: aborting due to previous error
24+
25+
For more information about this error, try `rustc --explain E0277`.

0 commit comments

Comments
 (0)