mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 19:21:32 +00:00
9 lines
207 B
Rust
9 lines
207 B
Rust
// No warnings about renamed lint when
|
|
// allow(renamed_and_removed_lints)
|
|
|
|
#![allow(renamed_and_removed_lints)]
|
|
|
|
#[deny(single_use_lifetime)]
|
|
#[deny(unused)]
|
|
fn main() { let unused = (); } //~ ERROR unused
|