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