mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:50:45 +00:00
10 lines
120 B
Rust
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);
|
|
}
|