rust/tests/ui/async-await/debug-ice-attempted-to-add-with-overflow.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
277 B
Rust
Raw Normal View History

2023-09-28 20:02:17 -05:00
// check-fail
// edition:2021
// test for issue-114912 - debug ice: attempted to add with overflow
async fn main() {
//~^ ERROR `main` function is not allowed to be `async`
[0usize; 0xffff_ffff_ffff_ffff].await;
//~^ ERROR `[usize; usize::MAX]` is not a future
}