blob: 564280b24f5986718613bc6d90c9f9d50dd31b5d [file] [log] [blame]
pub mod inner {
#[cfg(false)]
pub fn uwu() {}
#[cfg(false)]
pub mod doesnt_exist {
pub fn hello() {}
}
pub mod wrong {
#[cfg(feature = "suggesting me fails the test!!")]
pub fn meow() {}
}
pub mod right {
#[cfg(feature = "what-a-cool-feature")]
pub fn meow() {}
}
}
#[cfg(i_dont_exist_and_you_can_do_nothing_about_it)]
pub fn vanished() {}