mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
12 lines
205 B
Rust
12 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() {}
|