rust/src/test/ui/higher-rank-trait-bounds/hrtb-precedence-of-plus.rs

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() {}