mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-19 11:07:32 +00:00
11 lines
120 B
Rust
11 lines
120 B
Rust
extern "C" {
|
|
fn foo();
|
|
}
|
|
|
|
pub fn main() {
|
|
unsafe {
|
|
foo();
|
|
}
|
|
assert_eq!(7f32.powi(3), 343f32);
|
|
}
|