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

14 lines
128 B
Rust

//@ check-pass
#[cfg(test)]
mod tests {
#[test]
fn f() {}
}
#[cfg(test)]
mod more_tests {
#[test]
fn g() {}
}