fn main() {}
#[cfg(not(test))] mod nonexistent;
#[path = "../../nested_mod/src/paths_in_main/a/foo.rs"]
#[cfg(not(test))] pub mod outside_workspace;
mod verify_continue {
pub fn always_true() -> bool {
true
}
}
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert!(super::verify_continue::always_true());
}
}