mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 16:23:27 +00:00
9 lines
129 B
Rust
9 lines
129 B
Rust
//@ run-pass
|
|
#![feature(fn_traits)]
|
|
|
|
fn main() {
|
|
let mut zero = || 0;
|
|
let x = zero.call_mut(());
|
|
assert_eq!(x, 0);
|
|
}
|