2023-04-16 06:12:37 -05:00
|
|
|
error[E0015]: cannot call non-const fn `core::slice::<impl [()]>::get_unchecked::<std::ops::Range<usize>>` in constants
|
2024-09-08 01:54:01 -05:00
|
|
|
--> $DIR/ub-slice-get-unchecked.rs:7:29
|
2023-03-04 21:10:36 -06:00
|
|
|
|
|
|
|
|
LL | const B: &[()] = unsafe { A.get_unchecked(3..1) };
|
2023-04-16 06:12:37 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: calls in constants are limited to constant functions, tuple structs and tuple variants
|
2023-03-04 21:10:36 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-03-04 21:10:36 -06:00
|
|
|
|
2023-04-16 06:12:37 -05:00
|
|
|
For more information about this error, try `rustc --explain E0015`.
|