Files
rust/tests/ui/items_after_test_module/in_submodule.rs
Guillaume Gomez f666fd6417 Update UI tests
2025-02-15 13:38:16 +01:00

10 lines
128 B
Rust

//@error-in-other-file:
#[path = "auxiliary/submodule.rs"]
mod submodule;
#[cfg(test)]
mod tests {
#[test]
fn t() {}
}