Rollup merge of #62578 - JohnTitor:add-test-for-49919, r=alexcrichton

Add test for #49919

Closes #49919
This commit is contained in:
Mazdak Farrokhzad 2019-07-12 22:46:46 +02:00 committed by GitHub
commit 992bcd0266
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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`.