-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #119816 - oli-obk:tait_ice_unify_obligations, r=lcnr
Define hidden types in confirmation fixes #111470 r? `@lcnr` or `@compiler-errors` explanation in the newly added test
- Loading branch information
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
tests/ui/type-alias-impl-trait/nested_inference_failure.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// check-pass | ||
// revisions: new old | ||
//[new] compile-flags: -Znext-solver | ||
|
||
//! This test checks that we can successfully infer | ||
//! the hidden type of `FooImpl` to be `Foo<i32, {closure}>` | ||
//! and `ImplT` to be `i32`. This test used to fail, because | ||
//! we were unable to make the connection that the closure | ||
//! argument is the same as the first argument of `Foo`. | ||
|
||
#![feature(type_alias_impl_trait)] | ||
|
||
use std::fmt::Debug; | ||
use std::marker::PhantomData; | ||
|
||
struct Foo<T: Debug, F: FnOnce(T)> { | ||
f: F, | ||
_phantom: PhantomData<T>, | ||
} | ||
|
||
type ImplT = impl Debug; | ||
type FooImpl = Foo<ImplT, impl FnOnce(ImplT)>; | ||
|
||
fn bar() -> FooImpl { | ||
Foo::<i32, _> { f: |_| (), _phantom: PhantomData } | ||
} | ||
|
||
fn main() {} |