blob: 4d0ed33a643a87d5f56ac8e941b3329c31e0de49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
error[E0277]: can't compare `&[u8; 1]` with `[{integer}; 1]`
--> $DIR/issue-113447.rs:22: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: consider removing the borrow
|
LL - let _ = &[0u8] == [0xAA];
LL + let _ = [0u8] == [0xAA];
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0277`.
|