mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
12 lines
357 B
Rust
12 lines
357 B
Rust
// check-pass
|
|
|
|
#![feature(lint_reasons)]
|
|
#![warn(unused)]
|
|
|
|
#![expect(unused_variables, reason = "<This should fail and display this reason>")]
|
|
//~^ WARNING this lint expectation is unfulfilled [unfulfilled_lint_expectations]
|
|
//~| NOTE `#[warn(unfulfilled_lint_expectations)]` on by default
|
|
//~| NOTE <This should fail and display this reason>
|
|
|
|
fn main() {}
|