rustc/tests/ui/functions-closures/fn-bare-coerce-to-block.rs
2025-02-17 11:14:05 +01:00

10 lines
120 B
Rust

//@ run-pass
fn bare() {}
fn likes_block<F>(f: F) where F: FnOnce() { f() }
pub fn main() {
likes_block(bare);
}