mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 04:08:40 +00:00
11 lines
332 B
Rust
11 lines
332 B
Rust
![]() |
//@ 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() {}
|