summary refs log tree commit diff
path: root/src/test/compile-fail/native-unsafe-fn-called.rs
blob: 6459a423611b0a5c57a93eb26af0c20bda829e92 (plain)
1
2
3
4
5
6
7
8
9
10
11
// -*- rust -*-
// error-pattern: safe function calls function marked unsafe
#[abi = "cdecl"]
native mod test {
    unsafe fn free();
}

fn main() {
    test::free();
}