rust/tests/ui/unsized/box-instead-of-dyn-fn.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
383 B
Rust
Raw Permalink Normal View History

use std::fmt::Debug;
// Test to suggest boxing the return type, and the closure branch of the `if`
fn print_on_or_the_other<'a>(a: i32, b: &'a String) -> dyn Fn() + 'a {
2025-02-02 14:58:12 +00:00
//~^ ERROR return type cannot be a trait object without pointer indirection
if a % 2 == 0 {
move || println!("{a}")
} else {
Box::new(move || println!("{}", b))
}
}
fn main() {}