mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
10 lines
166 B
Rust
10 lines
166 B
Rust
// run-pass
|
|
|
|
fn foo() -> isize { 22 }
|
|
|
|
pub fn main() {
|
|
let mut x: Vec<extern "Rust" fn() -> isize> = Vec::new();
|
|
x.push(foo);
|
|
assert_eq!((x[0])(), 22);
|
|
}
|