mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-16 08:53:35 +00:00
10 lines
196 B
Rust
10 lines
196 B
Rust
![]() |
#![feature(tool_lints)]
|
||
|
|
||
|
#![warn(clippy::deprecated_cfg_attr)]
|
||
|
|
||
|
// This doesn't get linted, see known problems
|
||
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
||
|
|
||
|
#[cfg_attr(rustfmt, rustfmt_skip)]
|
||
|
fn main() {}
|