]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/min_const_fn/bad_const_fn_body_ice.stderr
Move `{core,std}::stream::Stream` to `{core,std}::async_iter::AsyncIterator`.
[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]: calls in constant functions are limited to constant functions, tuple structs and tuple variants
10   --> $DIR/bad_const_fn_body_ice.rs:2:5
11    |
12 LL |     vec![1, 2, 3]
13    |     ^^^^^^^^^^^^^
14    |
15    = note: this error originates in the macro `vec` (in Nightly builds, run with -Z macro-backtrace for more info)
16
17 error: aborting due to 2 previous errors
18
19 Some errors have detailed explanations: E0010, E0015.
20 For more information about an error, try `rustc --explain E0010`.