]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/sepcomp-extern.rs
a5506e3fc761dc1deddd1a589041e17444168f42
[rust.git] / src / test / run-pass / sepcomp-extern.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // compile-flags: -C codegen-units=3
12 // aux-build:sepcomp-extern-lib.rs
13
14 // Test accessing external items from multiple compilation units.
15
16 #[link(name = "sepcomp-extern-lib")]
17 extern {
18     #[allow(ctypes)]
19     fn foo() -> uint;
20 }
21
22 fn call1() -> uint {
23     unsafe { foo() }
24 }
25
26 mod a {
27     pub fn call2() -> uint {
28         unsafe { ::foo() }
29     }
30 }
31
32 mod b {
33     pub fn call3() -> uint {
34         unsafe { ::foo() }
35     }
36 }
37
38 fn main() {
39     assert_eq!(call1(), 1234);
40     assert_eq!(a::call2(), 1234);
41     assert_eq!(b::call3(), 1234);
42 }