]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/compiler-rt-works-on-mingw/foo.rs
Merge commit '1480cea393d0cee195e59949eabdfbcf1230f7f9' into clippyup
[rust.git] / tests / run-make-fulldeps / compiler-rt-works-on-mingw / foo.rs
1 extern "C" {
2     fn foo();
3 }
4
5 pub fn main() {
6     unsafe {
7         foo();
8     }
9     assert_eq!(7f32.powi(3), 343f32);
10 }