forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#113945 - chenyukang:yukang-fix-113447-slice…
…-2, r=cjgillot Fix wrong span for trait selection failure error reporting Fixes rust-lang#113447
- Loading branch information
Showing
5 changed files
with
88 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// run-rustfix | ||
|
||
pub struct Bytes; | ||
|
||
impl Bytes { | ||
pub fn as_slice(&self) -> &[u8] { | ||
todo!() | ||
} | ||
} | ||
|
||
impl PartialEq<[u8]> for Bytes { | ||
fn eq(&self, other: &[u8]) -> bool { | ||
self.as_slice() == other | ||
} | ||
} | ||
|
||
impl PartialEq<Bytes> for &[u8] { | ||
fn eq(&self, other: &Bytes) -> bool { | ||
*other == **self | ||
} | ||
} | ||
|
||
fn main() { | ||
let _ = &[0u8] == &[0xAA][..]; //~ ERROR can't compare `&[u8; 1]` with `[{integer}; 1]` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// run-rustfix | ||
|
||
pub struct Bytes; | ||
|
||
impl Bytes { | ||
pub fn as_slice(&self) -> &[u8] { | ||
todo!() | ||
} | ||
} | ||
|
||
impl PartialEq<[u8]> for Bytes { | ||
fn eq(&self, other: &[u8]) -> bool { | ||
self.as_slice() == other | ||
} | ||
} | ||
|
||
impl PartialEq<Bytes> for &[u8] { | ||
fn eq(&self, other: &Bytes) -> bool { | ||
*other == **self | ||
} | ||
} | ||
|
||
fn main() { | ||
let _ = &[0u8] == [0xAA]; //~ ERROR can't compare `&[u8; 1]` with `[{integer}; 1]` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
error[E0277]: can't compare `&[u8; 1]` with `[{integer}; 1]` | ||
--> $DIR/issue-113447.rs:24:20 | ||
| | ||
LL | let _ = &[0u8] == [0xAA]; | ||
| ^^ no implementation for `&[u8; 1] == [{integer}; 1]` | ||
| | ||
= help: the trait `PartialEq<[{integer}; 1]>` is not implemented for `&[u8; 1]` | ||
= help: the following other types implement trait `PartialEq<Rhs>`: | ||
<[A; N] as PartialEq<[B; N]>> | ||
<[A; N] as PartialEq<[B]>> | ||
<[A; N] as PartialEq<&[B]>> | ||
<[A; N] as PartialEq<&mut [B]>> | ||
<[T] as PartialEq<Vec<U, A>>> | ||
<[A] as PartialEq<[B]>> | ||
<[B] as PartialEq<[A; N]>> | ||
<&[u8] as PartialEq<Bytes>> | ||
and 4 others | ||
help: convert the array to a `&[u8]` slice instead | ||
| | ||
LL | let _ = &[0u8] == &[0xAA][..]; | ||
| + ++++ | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0277`. |