2022-02-03 19:59:47 -05:00
|
|
|
// compile-flags: -Cinstrument-coverage -Ccodegen-units=4 -Copt-level=0
|
2021-12-02 16:16:34 -05:00
|
|
|
|
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
|
|
mod foo {
|
|
|
|
|
#[inline(always)]
|
|
|
|
|
pub fn called() { }
|
|
|
|
|
|
|
|
|
|
fn uncalled() { }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub mod bar {
|
|
|
|
|
pub fn call_me() {
|
|
|
|
|
super::foo::called();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub mod baz {
|
|
|
|
|
pub fn call_me() {
|
|
|
|
|
super::foo::called();
|
|
|
|
|
}
|
|
|
|
|
}
|