2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
2021-08-06 23:38:09 +02:00
|
|
|
|
|
|
|
|
#![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() {}
|