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

71 lines
1.8 KiB
Plaintext
Raw Normal View History

2022-11-28 03:40:00 -06:00
error[E0080]: evaluation of `main::{constant#3}` failed
2023-06-06 15:56:57 -05:00
--> $DIR/test.rs:36:14
2022-11-28 03:40:00 -06:00
|
LL | const { &ARR[idx4()] }; // Ok, should not produce stderr, since `suppress-restriction-lint-in-const` is set true.
| ^^^^^^^^^^^ index out of bounds: the length is 2 but the index is 4
note: erroneous constant used
2023-06-06 15:56:57 -05:00
--> $DIR/test.rs:36:5
2022-11-28 03:40:00 -06:00
|
LL | const { &ARR[idx4()] }; // Ok, should not produce stderr, since `suppress-restriction-lint-in-const` is set true.
| ^^^^^^^^^^^^^^^^^^^^^^
2022-11-22 03:12:50 -06:00
error: indexing may panic
2023-06-06 15:56:57 -05:00
--> $DIR/test.rs:27:5
2022-11-22 03:12:50 -06:00
|
2022-11-28 03:40:00 -06:00
LL | x[index];
| ^^^^^^^^
2022-11-22 03:12:50 -06:00
|
2022-11-23 19:43:11 -06:00
= help: consider using `.get(n)` or `.get_mut(n)` instead
2022-11-22 03:12:50 -06:00
= note: `-D clippy::indexing-slicing` implied by `-D warnings`
2022-11-28 03:40:00 -06:00
error: indexing may panic
2023-06-06 15:56:57 -05:00
--> $DIR/test.rs:43:5
2022-11-28 03:40:00 -06:00
|
LL | v[0];
| ^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
error: indexing may panic
2023-06-06 15:56:57 -05:00
--> $DIR/test.rs:44:5
2022-11-28 03:40:00 -06:00
|
LL | v[10];
| ^^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
error: indexing may panic
2023-06-06 15:56:57 -05:00
--> $DIR/test.rs:45:5
2022-11-28 03:40:00 -06:00
|
LL | v[1 << 3];
| ^^^^^^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
error: indexing may panic
2023-06-06 15:56:57 -05:00
--> $DIR/test.rs:51:5
2022-11-28 03:40:00 -06:00
|
LL | v[N];
| ^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
error: indexing may panic
2023-06-06 15:56:57 -05:00
--> $DIR/test.rs:52:5
2022-11-28 03:40:00 -06:00
|
LL | v[M];
| ^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
error[E0080]: evaluation of constant value failed
2023-06-06 15:56:57 -05:00
--> $DIR/test.rs:15:24
2022-11-28 03:40:00 -06:00
|
LL | const REF_ERR: &i32 = &ARR[idx4()]; // Ok, let rustc handle const contexts.
| ^^^^^^^^^^^ index out of bounds: the length is 2 but the index is 4
error: aborting due to 8 previous errors
2022-11-22 03:12:50 -06:00
2022-11-28 03:40:00 -06:00
For more information about this error, try `rustc --explain E0080`.