Skip to content

Commit

Permalink
add non-regression test for issue 105809
Browse files Browse the repository at this point in the history
  • Loading branch information
lqd committed Dec 19, 2022
1 parent 8275d11 commit 5457db9
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/test/ui/mir/issue-105809.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// Non-regression test ICE from issue #105809 and duplicates.

// build-pass: the ICE is during codegen
// compile-flags: --edition 2018 -Zmir-opt-level=1

use std::{future::Future, pin::Pin};

// Create a `T` without affecting analysis like `loop {}`.
fn create<T>() -> T {
loop {}
}

async fn trivial_future() {}

struct Connection<H> {
_h: H,
}

async fn complex_future<H>(conn: &Connection<H>) {
let small_fut = async move {
let _ = conn;
trivial_future().await;
};

let mut tuple = (small_fut,);
let (small_fut_again,) = &mut tuple;
let _ = small_fut_again;
}

fn main() {
let mut fut = complex_future(&Connection { _h: () });

let mut cx = create();
let future = unsafe { Pin::new_unchecked(&mut fut) };
let _ = future.poll(&mut cx);
}

0 comments on commit 5457db9

Please sign in to comment.