mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
f837c48f0d
Fix #90546 by filtering out global value function pointer types from the type tests, and adding the LowerTypeTests pass to the rustc LTO optimization pipelines.
18 lines
452 B
Rust
18 lines
452 B
Rust
// Regression test for issue 111184, where ty::GeneratorWitness 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());
|
|
}
|