Skip to content

Commit 731595d

Browse files
committed
Auto merge of #5197 - flip1995:fail_everything, r=<try>
[DNM] Test that bors fails successfully Merging works, if every test finishes successfully (#5190). Let's test if failing also works. changelog: none
2 parents 06f0ab0 + 8f0a84d commit 731595d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Clippy Test](https://github.com/rust-lang/rust-clippy/workflows/Clippy%20Test/badge.svg?branch=auto&event=push)](https://github.com/rust-lang/rust-clippy/actions?query=workflow%3A%22Clippy+Test%22+event%3Apush+branch%3Aauto)
44
[![License: MIT OR Apache-2.0](https://img.shields.io/crates/l/clippy.svg)](#license)
55

6-
A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
6+
A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code. hdksjhaksjhdk
77

88
[There are 355 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
99

clippy_lints/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
#[allow(unused_extern_crates)]
1818
extern crate fmt_macros;
1919
#[allow(unused_extern_crates)]
20-
extern crate rustc;
20+
extern crate rustc
21+
;
2122
#[allow(unused_extern_crates)]
2223
extern crate rustc_ast_pretty;
2324
#[allow(unused_extern_crates)]

tests/ui/absurd-extreme-comparisons.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ error: this comparison involving the minimum or maximum element for this type co
44
LL | u <= 0;
55
| ^^^^^^
66
|
7+
78
= note: `-D clippy::absurd-extreme-comparisons` implied by `-D warnings`
89
= help: because `0` is the minimum value for this type, the case where the two sides are not equal never occurs, consider using `u == 0` instead
910

0 commit comments

Comments
 (0)