Add test for #49919

This commit is contained in:
Yuki Okushi 2019-07-11 09:58:09 +09:00
parent cd2cd4c962
commit 37942c4753
2 changed files with 16 additions and 0 deletions

View file

@ -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() {}

View file

@ -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`.