]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/compiler-rt-works-on-mingw/foo.rs
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[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 }