about summary refs log tree commit diff
path: root/src/test/run-pass/lint-cap.rs
AgeCommit message (Collapse)AuthorLines
2019-07-27tests: Move run-pass tests without naming conflicts to uiVadim Petrochenkov-8/+0
2019-07-27tests: Add missing run-pass annotationsVadim Petrochenkov-0/+1
2019-04-22Remove double trailing newlinesvarkor-1/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2015-07-28rustc: Add a --cap-lints flag to the compilerAlex Crichton-0/+18
This commit is an implementation of [RFC 1193][rfc] which adds the ability to the compiler to cap the lint level for the entire compilation session. This flag will ensure that no lints will go above this level, and Cargo will primarily use this flag passing `--cap-lints allow` to all upstream dependencies. [rfc]: https://github.com/rust-lang/rfcs/pull/1193 Closes #27259