rust-clippy/tests/ui/items_after_test_module/multiple_modules.rs

12 lines
112 B
Rust
Raw Normal View History

#[cfg(test)]
mod tests {
#[test]
fn f() {}
}
#[cfg(test)]
mod more_tests {
#[test]
fn g() {}
}