mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +00:00
8 lines
129 B
Rust
8 lines
129 B
Rust
// check-fail
|
|
|
|
#![deny(unknown_lints)]
|
|
#![allow(test_unstable_lint)]
|
|
//~^ ERROR unknown lint: `test_unstable_lint`
|
|
|
|
fn main() {}
|