]> git.lizzy.rs Git - rust.git/blob - tests/ui/extern/extern-mod-abi.rs
Rollup merge of #106644 - alexcrichton:update-wasi-toolchain, r=cuviper
[rust.git] / tests / ui / extern / extern-mod-abi.rs
1 // run-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4
5 extern "C" {
6     fn pow(x: f64, y: f64) -> f64;
7 }
8
9 pub fn main() {}