summary refs log tree commit diff
path: root/tests/ui/abi/foreign/invoke-external-foreign.rs
blob: 78cc84804bfd0d83e2eedc746efcd26af11f2ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ run-pass
//@ aux-build:foreign_lib.rs

// The purpose of this test is to check that we can
// successfully (and safely) invoke external, cdecl
// functions from outside the crate.

//@ pretty-expanded FIXME #23616

extern crate foreign_lib;

pub fn main() {
    unsafe {
        let _foo = foreign_lib::rustrt::rust_get_test_int();
    }
}