DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb11u3 / tests / ui / functions-closures / fn-bare-coerce-to-block.rs
12345678910
//@ run-pass //@ pretty-expanded FIXME #23616 fn bare() {} fn likes_block<F>(f: F) where F: FnOnce() { f() } pub fn main() { likes_block(bare); }