mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +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);
|
|
}
|