]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/sepcomp-cci.rs
Rollup merge of #45171 - rust-lang:petrochenkov-patch-2, r=steveklabnik
[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 // ignore-bitrig
12 // compile-flags: -C codegen-units=3
13 // aux-build:sepcomp_cci_lib.rs
14
15 // Test accessing cross-crate inlined items from multiple compilation units.
16
17
18 extern crate sepcomp_cci_lib;
19 use sepcomp_cci_lib::{cci_fn, CCI_CONST};
20
21 fn call1() -> usize {
22     cci_fn() + CCI_CONST
23 }
24
25 mod a {
26     use sepcomp_cci_lib::{cci_fn, CCI_CONST};
27     pub fn call2() -> usize {
28         cci_fn() + CCI_CONST
29     }
30 }
31
32 mod b {
33     use sepcomp_cci_lib::{cci_fn, CCI_CONST};
34     pub fn call3() -> usize {
35         cci_fn() + CCI_CONST
36     }
37 }
38
39 fn main() {
40     assert_eq!(call1(), 1234);
41     assert_eq!(a::call2(), 1234);
42     assert_eq!(b::call3(), 1234);
43 }