summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/cli-unknown-force-warn.rs
blob: a9e4e4a60179ed9e8fe5d398fda8f95a636d70f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Checks that rustc correctly errors when passed an invalid lint with
// `--force-warn`. This is a regression test for issue #86958.

// check-pass
// compile-flags: --force-warn foo-qux

// error-pattern: unknown lint: `foo_qux`
// error-pattern: requested on the command line with `--force-warn foo_qux`
// error-pattern: `#[warn(unknown_lints)]` on by default

fn main() {}