about summary refs log tree commit diff
path: root/tests/ui/lint/rfc-2383-lint-reason/expect_with_reason.rs
blob: 482c8134a83f0d6a0a4da71484214f0d23a595f9 (plain)
1
2
3
4
5
6
7
8
9
10
//@ check-pass

#![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() {}