2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2014-09-20 23:36:17 -05:00
|
|
|
// Check that we can use `-C lto` when linking against libraries that were
|
2014-09-17 18:18:12 -05:00
|
|
|
// separately compiled.
|
2014-08-01 17:45:24 -05:00
|
|
|
|
|
|
|
// aux-build:sepcomp_lib.rs
|
2017-01-18 10:24:43 -06:00
|
|
|
// compile-flags: -C lto -g
|
2019-08-17 00:08:01 -05:00
|
|
|
// ignore-asmjs wasm2js does not support source maps yet
|
2014-08-01 17:45:24 -05:00
|
|
|
// no-prefer-dynamic
|
|
|
|
|
|
|
|
extern crate sepcomp_lib;
|
|
|
|
use sepcomp_lib::a::one;
|
|
|
|
use sepcomp_lib::b::two;
|
|
|
|
use sepcomp_lib::c::three;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert_eq!(one(), 1);
|
|
|
|
assert_eq!(two(), 2);
|
|
|
|
assert_eq!(three(), 3);
|
|
|
|
}
|