rust-clippy/tests/ui-toml/suppress_lint_in_const/test.stderr

11 lines
356 B
Text
Raw Normal View History

2022-11-22 17:12:50 +08:00
error: indexing may panic
--> $DIR/test.rs:11:9
|
LL | self.value[0] & 0b1000_0000 != 0
2022-11-23 16:26:25 +08:00
| ^^^^^^^^^^^^^ help: consider using `.get(n)` or `.get_mut(n)` instead: `the suggestion might not be applicable in constant blocks`
2022-11-22 17:12:50 +08:00
|
= note: `-D clippy::indexing-slicing` implied by `-D warnings`
error: aborting due to previous error