]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/sepcomp-fns-backwards.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / sepcomp-fns-backwards.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
14 // Test references to items that haven't been translated yet.
15
16 // Generate some code in the first compilation unit before declaring any
17 // modules.  This ensures that the first module doesn't go into the same
18 // compilation unit as the top-level module.
19
20 fn pad() -> usize { 0 }
21
22 mod b {
23     pub fn three() -> usize {
24         ::one() + ::a::two()
25     }
26 }
27
28 mod a {
29     pub fn two() -> usize {
30         ::one() + ::one()
31     }
32 }
33
34 fn one() -> usize {
35     1
36 }
37
38 fn main() {
39     assert_eq!(one(), 1);
40     assert_eq!(a::two(), 2);
41     assert_eq!(b::three(), 3);
42 }