2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(dead_code)]
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
// Test that `Fn(isize) -> isize + 'static` parses as `(Fn(isize) -> isize) +
|
|
|
|
// 'static` and not `Fn(isize) -> (isize + 'static)`. The latter would
|
2014-11-25 12:42:16 +00:00
|
|
|
// cause a compilation error. Issue #18772.
|
|
|
|
|
2019-05-28 18:47:21 +00:00
|
|
|
fn adder(y: isize) -> Box<dyn Fn(isize) -> isize + 'static> {
|
2015-02-15 08:52:21 +00:00
|
|
|
Box::new(move |x| y + x)
|
2014-11-25 12:42:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|