mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
11 lines
205 B
Rust
11 lines
205 B
Rust
#![feature(custom_inner_attributes)]
|
|
#![clippy::msrv = "1.40"]
|
|
#![clippy::msrv = "=1.35.0"]
|
|
#![clippy::msrv = "1.10.1"]
|
|
|
|
mod foo {
|
|
#![clippy::msrv = "1"]
|
|
#![clippy::msrv = "1.0.0"]
|
|
}
|
|
|
|
fn main() {}
|