blob: 21fdfdf90051650c099eb41c9d2de534a43a371d [file] [log] [blame]
//@compile-flags: --test
#![allow(unused)]
#![warn(clippy::tests_outside_test_module)]
fn main() {
// test code goes here
}
// Should lint
#[test]
fn my_test() {}
#[cfg(test)]
mod tests {
// Should not lint
#[test]
fn my_test() {}
}