]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/heap/alloc_intrinsic_errors.stderr
Rollup merge of #90840 - BoxyUwU:lolripme, r=jackh726
[rust.git] / src / test / ui / consts / const-eval / heap / alloc_intrinsic_errors.stderr
1 error[E0080]: evaluation of constant value failed
2   --> $DIR/alloc_intrinsic_errors.rs:9:17
3    |
4 LL | const FOO: i32 = foo();
5    |                  ----- inside `FOO` at $DIR/alloc_intrinsic_errors.rs:6:18
6 ...
7 LL |         let _ = intrinsics::const_allocate(4, 3) as * mut i32;
8    |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9    |                 |
10    |                 align has to be a power of 2, `3` is not a power of 2
11    |                 inside `foo` at $DIR/alloc_intrinsic_errors.rs:9:17
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0080`.