summaryrefslogtreecommitdiffstats
path: root/src/test/ui/abi/foreign/foreign-dupe.rs
blob: 3c9f0f583d48779c9944931eea4c33f72692c1d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run-pass
// aux-build:foreign_lib.rs
// ignore-wasm32-bare no libc to test ffi with

// Check that we can still call duplicated extern (imported) functions
// which were declared in another crate. See issues #32740 and #32783.


extern crate foreign_lib;

pub fn main() {
    unsafe {
        let x = foreign_lib::rustrt::rust_get_test_int();
        assert_eq!(x, foreign_lib::rustrt2::rust_get_test_int());
        assert_eq!(x as *const _, foreign_lib::rustrt3::rust_get_test_int());
    }
}