blob: 7998f1870b8fe9b9678b8381265700e9e0fca320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//@ no-prefer-dynamic
//@ compile-flags: -Ccodegen-units=2 --crate-type=lib
extern crate cgu_test;
pub mod a {
pub fn a() {
::cgu_test::id(0);
}
}
pub mod b {
pub fn a() {
::cgu_test::id(0);
}
}
|