summary refs log tree commit diff
path: root/src/test/ui/consts/async-block.stderr
blob: 99f470623ac32ce2835386a648f73b5ba8c31890 (plain)
1
2
3
4
5
6
7
8
error: `async` blocks are not allowed in constants
  --> $DIR/async-block.rs:5:47
   |
LL | const _: i32 = { core::mem::ManuallyDrop::new(async { 0 }); 4 };
   |                                               ^^^^^^^^^^^

error: aborting due to previous error