summaryrefslogtreecommitdiff
path: root/test cases/rust/27 objects/main.rs
blob: 538359943271de0f115cb255b56f61a04c5994d9 (plain)
1
2
3
4
5
6
7
8
9
extern "C" {
    fn c_func();
}

fn main() {
    unsafe {
        c_func();
    }
}