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