Add E0602

This commit is contained in:
Guillaume Gomez 2017-06-01 23:25:13 +02:00
parent 4ed2edaafe
commit 7cc1ab4480
3 changed files with 32 additions and 3 deletions

View File

@ -1900,6 +1900,19 @@ If you don't know the basics of Rust, you can go look to the Rust Book to get
started: https://doc.rust-lang.org/book/
"##,
E0602: r##"
An unknown lint was used on the command line.
Erroneous example:
```ignore
rustc -D bogus omse_file.rs
```
Maybe you just misspelled the lint name or the lint doesn't exist anymore.
Either way, try to update/remove it in order to fix the error.
"##,
}

View File

@ -746,8 +746,8 @@ pub trait LintContext<'tcx>: Sized {
continue;
}
}
},
Err(FindLintError::Removed) => { continue; }
}
Err(FindLintError::Removed) => continue,
}
}
};
@ -1298,7 +1298,7 @@ fn check_lint_name_cmdline(sess: &Session, lint_cx: &LintStore,
Some(sess.struct_warn(msg))
},
CheckLintNameResult::NoLint => {
Some(sess.struct_err(&format!("unknown lint: `{}`", lint_name)))
Some(struct_err!(sess, E0602, "unknown lint: `{}`", lint_name))
}
};

View File

@ -0,0 +1,16 @@
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// compile-flags:-D bogus
// error-pattern:E0602
// error-pattern:requested on the command line with `-D bogus`
fn main() {}