mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
10 lines
307 B
Rust
10 lines
307 B
Rust
// compile-flags:-D bogus -D dead_cod
|
|
|
|
// error-pattern:unknown lint: `bogus`
|
|
// error-pattern:requested on the command line with `-D bogus`
|
|
// 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() { }
|