mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
12 lines
112 B
Rust
12 lines
112 B
Rust
|
#[cfg(test)]
|
||
|
mod tests {
|
||
|
#[test]
|
||
|
fn f() {}
|
||
|
}
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod more_tests {
|
||
|
#[test]
|
||
|
fn g() {}
|
||
|
}
|