]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/min_const_fn/bad_const_fn_body_ice.stderr
Rollup merge of #93613 - crlf0710:rename_to_async_iter, r=yaahc
[rust.git] / src / test / ui / consts / min_const_fn / bad_const_fn_body_ice.stderr
1 error[E0010]: allocations are not allowed in constant functions
2   --> $DIR/bad_const_fn_body_ice.rs:2:5
3    |
4 LL |     vec![1, 2, 3]
5    |     ^^^^^^^^^^^^^ allocation not allowed in constant functions
6    |
7    = note: this error originates in the macro `vec` (in Nightly builds, run with -Z macro-backtrace for more info)
8
9 error[E0015]: cannot call non-const fn `slice::<impl [i32]>::into_vec::<std::alloc::Global>` in constant functions
10   --> $DIR/bad_const_fn_body_ice.rs:2:5
11    |
12 LL |     vec![1, 2, 3]
13    |     ^^^^^^^^^^^^^
14    |
15    = note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
16    = note: this error originates in the macro `vec` (in Nightly builds, run with -Z macro-backtrace for more info)
17
18 error: aborting due to 2 previous errors
19
20 Some errors have detailed explanations: E0010, E0015.
21 For more information about an error, try `rustc --explain E0010`.