rust/tests/incremental/callee_caller_cross_crate/auxiliary/a.rs

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

15 lines
168 B
Rust
Raw Normal View History

2016-05-06 14:17:55 -05:00
#![crate_type="rlib"]
#[cfg(rpass1)]
pub fn function0(x: u32) -> u32 {
x
}
#[cfg(rpass2)]
pub fn function0(x: i32) -> i32 {
x
}
pub fn function1(x: u32) {
}