Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
tests_outside_test_module.rs
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
()
{}
}