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