14 lines
128 B
Rust
14 lines
128 B
Rust
//@ check-pass
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
#[test]
|
|
fn f() {}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod more_tests {
|
|
#[test]
|
|
fn g() {}
|
|
}
|