rust/tests/ui/impl-trait/normalize-opaque-with-bound-vars.rs

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

28 lines
521 B
Rust
Raw Normal View History

2023-06-23 22:00:55 +00:00
// build-pass
// edition:2021
// compile-flags: -Cdebuginfo=2
// We were not normalizing opaques with escaping bound vars during codegen,
// leading to later linker errors because of differences in mangled symbol name.
fn func<T>() -> impl Sized {}
trait Trait<'a> {
type Assoc;
fn call() {
let _ = async {
let _value = func::<Self::Assoc>();
std::future::ready(()).await
};
}
}
impl Trait<'static> for () {
type Assoc = ();
}
fn main() {
<()>::call();
}