2023-09-07 00:11:41 -05:00
|
|
|
//@ run-rustfix
|
2024-04-06 17:33:37 -05:00
|
|
|
//@ compile-flags: -Aunused
|
2023-09-07 00:11:41 -05:00
|
|
|
|
|
|
|
use y::z;
|
2024-04-06 17:33:37 -05:00
|
|
|
#[cfg(all())]
|
2023-09-07 00:11:41 -05:00
|
|
|
use y::Whatever;
|
|
|
|
|
|
|
|
mod y {
|
|
|
|
pub(crate) fn z() {}
|
|
|
|
pub(crate) struct Whatever;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
z();
|
|
|
|
//~^ ERROR cannot find function `z` in this scope
|
|
|
|
}
|