]> git.proxmox.com Git - rustc.git/blob - tests/ui/consts/const-eval/heap/alloc_intrinsic_errors.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / 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 | let _ = intrinsics::const_allocate(4, 3) as *mut i32;
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ invalid align passed to `const_allocate`: 3 is not a power of 2
6 |
7 note: inside `foo`
8 --> $DIR/alloc_intrinsic_errors.rs:9:17
9 |
10 LL | let _ = intrinsics::const_allocate(4, 3) as *mut i32;
11 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12 note: inside `FOO`
13 --> $DIR/alloc_intrinsic_errors.rs:6:18
14 |
15 LL | const FOO: i32 = foo();
16 | ^^^^^
17
18 error: aborting due to 1 previous error
19
20 For more information about this error, try `rustc --explain E0080`.