2016-12-16 19:10:16 -06:00
|
|
|
// aux-build:dep.rs
|
2017-06-02 20:34:13 -05:00
|
|
|
// This ignores the test against rustc, but runs it against miri:
|
2016-12-19 08:46:03 -06:00
|
|
|
// ignore-cross-compile
|
2016-12-16 19:10:16 -06:00
|
|
|
|
2016-12-19 08:46:03 -06:00
|
|
|
extern crate dep;
|
2016-12-16 19:10:16 -06:00
|
|
|
|
|
|
|
fn main() {
|
2016-12-19 08:46:03 -06:00
|
|
|
dep::foo();
|
2016-12-16 19:10:16 -06:00
|
|
|
}
|