about summary refs log tree commit diff
path: root/tests/ui/extern/extern-mod-abi.rs
blob: 29892c468dd3b609bc3c5c7cb6749605b318b1f7 (plain)
1
2
3
4
5
6
7
8
//@ run-pass
#![allow(dead_code)]

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

pub fn main() {}