2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-25 19:06:52 -05: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 06:42:16 -06:00
|
|
|
// cause a compilation error. Issue #18772.
|
|
|
|
|
2019-05-28 13:47:21 -05:00
|
|
|
fn adder(y: isize) -> Box<dyn Fn(isize) -> isize + 'static> {
|
2015-02-15 02:52:21 -06:00
|
|
|
Box::new(move |x| y + x)
|
2014-11-25 06:42:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|