The author lint is not an internal lint, and should also be enabled, when Clippy is distributed through rustup. This moves the author lint test cases back to tests/ui.
17 lines
217 B
Rust
17 lines
217 B
Rust
#[allow(clippy::all)]
|
|
|
|
fn main() {
|
|
#[clippy::author]
|
|
let _ = if true {
|
|
1 == 1;
|
|
} else {
|
|
2 == 2;
|
|
};
|
|
|
|
let a = true;
|
|
|
|
#[clippy::author]
|
|
if let true = a {
|
|
} else {
|
|
};
|
|
}
|