fn-trait-closure test now pass on new solver

This commit is contained in:
Santiago Pastorino 2023-01-22 12:36:58 -03:00
parent 6155a80380
commit b905f80036
No known key found for this signature in database
GPG Key ID: 8131A24E0C79EFAF

View File

@ -1,12 +1,5 @@
// compile-flags: -Ztrait-solver=next
// known-bug: unknown
// failure-status: 101
// dont-check-compiler-stderr
// This test will fail until we fix `FulfillmentCtxt::relationships`. That's
// because we create a type variable for closure upvar types, which is not
// constrained until after we try to do fallback on diverging type variables.
// Thus, we will call that function, which is unimplemented.
// check-pass
fn require_fn(_: impl Fn() -> i32) {}