forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
fn foo<'a, T: 'a>(t: T) -> Box<dyn Fn() -> &'a T + 'a> { | ||
let foo: Box<dyn for <'c> Fn() -> &'c T> = Box::new(move || &t); | ||
//~^ ERROR: binding for associated type | ||
unimplemented!() | ||
} | ||
|
||
fn main() {} |
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,9 @@ | ||
error[E0582]: binding for associated type `Output` references lifetime `'c`, which does not appear in the trait input types | ||
--> $DIR/issue-49919.rs:2:39 | ||
| | ||
LL | let foo: Box<dyn for <'c> Fn() -> &'c T> = Box::new(move || &t); | ||
| ^^^^^ | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0582`. |