]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/lto-no-link-whole-rlib/main.rs
add (currently ICEing) test
[rust.git] / tests / run-make-fulldeps / lto-no-link-whole-rlib / main.rs
1 extern crate lib1;
2 extern crate lib2;
3
4 fn main() {
5     assert_eq!(lib1::foo1(), 2);
6     assert_eq!(lib2::foo2(), 2);
7 }