-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix obligation param and bless tests
- Loading branch information
1 parent
5f59b7f
commit 09ea3f9
Showing
11 changed files
with
64 additions
and
104 deletions.
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
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
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,33 @@ | ||
//@ revisions: current next | ||
//@[next] compile-flags: -Znext-solver | ||
//@ build-pass | ||
|
||
// Regression test for incomplete handling of Fn-trait goals, | ||
// fixed in #122267. | ||
|
||
trait Trait { | ||
type Assoc<'a>: FnOnce(&'a ()); | ||
} | ||
|
||
impl Trait for () { | ||
type Assoc<'a> = fn(&'a ()); | ||
} | ||
|
||
trait Indir { | ||
fn break_me() {} | ||
} | ||
|
||
impl<F: Trait> Indir for F | ||
where | ||
for<'a> F::Assoc<'a>: FnOnce(&'a ()), | ||
{ | ||
fn break_me() {} | ||
} | ||
|
||
fn foo<F: Trait>() { | ||
F::break_me() | ||
} | ||
|
||
fn main() { | ||
foo::<()>(); | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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