summaryrefslogtreecommitdiffstats
path: root/tests/ui/sanitize/issue-111184-coroutine-witness.rs
blob: dffb739f203219afc748c95cdd4398ac0d1b65ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Regression test for issue 111184, where ty::CoroutineWitness were not expected to occur in
// encode_ty and caused the compiler to ICE.
//
// needs-sanitizer-cfi
// compile-flags: -Ccodegen-units=1 -Clto -Ctarget-feature=-crt-static -Zsanitizer=cfi --edition=2021
// no-prefer-dynamic
// only-x86_64-unknown-linux-gnu
// build-pass

use std::future::Future;

async fn foo() {}
fn bar<T>(_: impl Future<Output = T>) {}

fn main() {
    bar(foo());
}