summaryrefslogtreecommitdiffstats
path: root/src/test/ui/extern/extern-mod-abi.rs
blob: c543394cca05f1ac429909bc7af273b2c7d54d24 (plain)
1
2
3
4
5
6
7
8
9
// run-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616

extern "C" {
    fn pow(x: f64, y: f64) -> f64;
}

pub fn main() {}