Files
rust/tests/ui/items_after_test_module/in_submodule.rs

10 lines
128 B
Rust
Raw Normal View History

2025-02-11 17:57:08 +01:00
//@error-in-other-file:
#[path = "auxiliary/submodule.rs"]
mod submodule;
#[cfg(test)]
mod tests {
#[test]
fn t() {}
}