]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/sepcomp-cci.rs
rollup merge of #19020: Gankro/better-warn
[rust.git] / src / test / run-pass / sepcomp-cci.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_cci_lib.rs
13
14 // Test accessing cross-crate inlined items from multiple compilation units.
15
16 extern crate sepcomp_cci_lib;
17 use sepcomp_cci_lib::{cci_fn, CCI_STATIC};
18
19 fn call1() -> uint {
20     cci_fn() + CCI_STATIC
21 }
22
23 mod a {
24     use sepcomp_cci_lib::{cci_fn, CCI_STATIC};
25     pub fn call2() -> uint {
26         cci_fn() + CCI_STATIC
27     }
28 }
29
30 mod b {
31     use sepcomp_cci_lib::{cci_fn, CCI_STATIC};
32     pub fn call3() -> uint {
33         cci_fn() + CCI_STATIC
34     }
35 }
36
37 fn main() {
38     assert_eq!(call1(), 1234);
39     assert_eq!(a::call2(), 1234);
40     assert_eq!(b::call3(), 1234);
41 }