mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
12 lines
377 B
Rust
12 lines
377 B
Rust
// check-pass
|
|
// compile-flags:-D bogus -D dead_cod
|
|
|
|
// error-pattern:unknown lint: `bogus`
|
|
// error-pattern:requested on the command line with `-D bogus`
|
|
// error-pattern:`#[warn(unknown_lints)]` on by default
|
|
// error-pattern:unknown lint: `dead_cod`
|
|
// error-pattern:requested on the command line with `-D dead_cod`
|
|
// error-pattern:did you mean: `dead_code`
|
|
|
|
fn main() { }
|