rust/tests/incremental/callee_caller_cross_crate/b.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
320 B
Rust
Raw Normal View History

2016-05-06 14:17:55 -05:00
// aux-build:a.rs
// revisions:rpass1 rpass2
// compile-flags:-Z query-dep-graph
2016-05-06 14:17:55 -05:00
#![feature(rustc_attrs)]
extern crate a;
#[rustc_clean(except="typeck", cfg="rpass2")]
2016-05-06 14:17:55 -05:00
pub fn call_function0() {
a::function0(77);
}
#[rustc_clean(cfg="rpass2")]
2016-05-06 14:17:55 -05:00
pub fn call_function1() {
a::function1(77);
}
pub fn main() { }