mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
367 B
Rust
14 lines
367 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
// Test that `Fn(isize) -> isize + 'static` parses as `(Fn(isize) -> isize) +
|
|
// 'static` and not `Fn(isize) -> (isize + 'static)`. The latter would
|
|
// cause a compilation error. Issue #18772.
|
|
|
|
fn adder(y: isize) -> Box<dyn Fn(isize) -> isize + 'static> {
|
|
Box::new(move |x| y + x)
|
|
}
|
|
|
|
fn main() {}
|