forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#5666 - flip1995:rollup-yjyvvbg, r=flip1995
Rollup of 3 pull requests Successful merges: - rust-lang#5637 (new lint: vec_resize_to_zero) - rust-lang#5656 (len_zero: skip ranges if feature `range_is_empty` is not enabled) - rust-lang#5663 (add testcase that no longer ICEs) Failed merges: r? @ghost changelog: rollup
- Loading branch information
Showing
15 changed files
with
244 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
use crate::utils::span_lint_and_then; | ||
use if_chain::if_chain; | ||
use rustc_errors::Applicability; | ||
use rustc_hir::{Expr, ExprKind}; | ||
use rustc_lint::{LateContext, LateLintPass}; | ||
use rustc_session::{declare_lint_pass, declare_tool_lint}; | ||
use rustc_span::source_map::Spanned; | ||
|
||
use crate::utils::{match_def_path, paths}; | ||
use rustc_ast::ast::LitKind; | ||
use rustc_hir as hir; | ||
|
||
declare_clippy_lint! { | ||
/// **What it does:** Finds occurences of `Vec::resize(0, an_int)` | ||
/// | ||
/// **Why is this bad?** This is probably an argument inversion mistake. | ||
/// | ||
/// **Known problems:** None. | ||
/// | ||
/// **Example:** | ||
/// ```rust | ||
/// vec!(1, 2, 3, 4, 5).resize(0, 5) | ||
/// ``` | ||
pub VEC_RESIZE_TO_ZERO, | ||
correctness, | ||
"emptying a vector with `resize(0, an_int)` instead of `clear()` is probably an argument inversion mistake" | ||
} | ||
|
||
declare_lint_pass!(VecResizeToZero => [VEC_RESIZE_TO_ZERO]); | ||
|
||
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for VecResizeToZero { | ||
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) { | ||
if_chain! { | ||
if let hir::ExprKind::MethodCall(path_segment, _, ref args) = expr.kind; | ||
if let Some(method_def_id) = cx.tables.type_dependent_def_id(expr.hir_id); | ||
if match_def_path(cx, method_def_id, &paths::VEC_RESIZE) && args.len() == 3; | ||
if let ExprKind::Lit(Spanned { node: LitKind::Int(0, _), .. }) = args[1].kind; | ||
if let ExprKind::Lit(Spanned { node: LitKind::Int(..), .. }) = args[2].kind; | ||
then { | ||
let method_call_span = expr.span.with_lo(path_segment.ident.span.lo()); | ||
span_lint_and_then( | ||
cx, | ||
VEC_RESIZE_TO_ZERO, | ||
expr.span, | ||
"emptying a vector with `resize`", | ||
|db| { | ||
db.help("the arguments may be inverted..."); | ||
db.span_suggestion( | ||
method_call_span, | ||
"...or you can empty the vector with", | ||
"clear()".to_string(), | ||
Applicability::MaybeIncorrect, | ||
); | ||
}, | ||
); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// https://github.com/rust-lang/rust-clippy/issues/3969 | ||
// used to crash: error: internal compiler error: | ||
// src/librustc_traits/normalize_erasing_regions.rs:43: could not fully normalize `<i32 as | ||
// std::iter::Iterator>::Item test from rustc ./ui/trivial-bounds/trivial-bounds-inconsistent.rs | ||
|
||
// Check that tautalogically false bounds are accepted, and are used | ||
// in type inference. | ||
#![feature(trivial_bounds)] | ||
#![allow(unused)] | ||
|
||
trait A {} | ||
|
||
impl A for i32 {} | ||
|
||
struct Dst<X: ?Sized> { | ||
x: X, | ||
} | ||
|
||
struct TwoStrs(str, str) | ||
where | ||
str: Sized; | ||
|
||
fn unsized_local() | ||
where | ||
for<'a> Dst<A + 'a>: Sized, | ||
{ | ||
let x: Dst<A> = *(Box::new(Dst { x: 1 }) as Box<Dst<A>>); | ||
} | ||
|
||
fn return_str() -> str | ||
where | ||
str: Sized, | ||
{ | ||
*"Sized".to_string().into_boxed_str() | ||
} | ||
|
||
fn use_op(s: String) -> String | ||
where | ||
String: ::std::ops::Neg<Output = String>, | ||
{ | ||
-s | ||
} | ||
|
||
fn use_for() | ||
where | ||
i32: Iterator, | ||
{ | ||
for _ in 2i32 {} | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
error: trait objects without an explicit `dyn` are deprecated | ||
--> $DIR/ice-3969.rs:25:17 | ||
| | ||
LL | for<'a> Dst<A + 'a>: Sized, | ||
| ^^^^^^ help: use `dyn`: `dyn A + 'a` | ||
| | ||
= note: `-D bare-trait-objects` implied by `-D warnings` | ||
|
||
error: trait objects without an explicit `dyn` are deprecated | ||
--> $DIR/ice-3969.rs:27:16 | ||
| | ||
LL | let x: Dst<A> = *(Box::new(Dst { x: 1 }) as Box<Dst<A>>); | ||
| ^ help: use `dyn`: `dyn A` | ||
|
||
error: trait objects without an explicit `dyn` are deprecated | ||
--> $DIR/ice-3969.rs:27:57 | ||
| | ||
LL | let x: Dst<A> = *(Box::new(Dst { x: 1 }) as Box<Dst<A>>); | ||
| ^ help: use `dyn`: `dyn A` | ||
|
||
error: aborting due to 3 previous errors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// run-rustfix | ||
|
||
#![feature(range_is_empty)] | ||
#![warn(clippy::len_zero)] | ||
#![allow(unused)] | ||
|
||
mod issue_3807 { | ||
// With the feature enabled, `is_empty` should be suggested | ||
fn suggestion_is_fine() { | ||
let _ = (0..42).is_empty(); | ||
} | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// run-rustfix | ||
|
||
#![feature(range_is_empty)] | ||
#![warn(clippy::len_zero)] | ||
#![allow(unused)] | ||
|
||
mod issue_3807 { | ||
// With the feature enabled, `is_empty` should be suggested | ||
fn suggestion_is_fine() { | ||
let _ = (0..42).len() == 0; | ||
} | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
error: length comparison to zero | ||
--> $DIR/len_zero_ranges.rs:10:17 | ||
| | ||
LL | let _ = (0..42).len() == 0; | ||
| ^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `(0..42).is_empty()` | ||
| | ||
= note: `-D clippy::len-zero` implied by `-D warnings` | ||
|
||
error: aborting due to previous error | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#![warn(clippy::vec_resize_to_zero)] | ||
|
||
fn main() { | ||
// applicable here | ||
vec![1, 2, 3, 4, 5].resize(0, 5); | ||
|
||
// not applicable | ||
vec![1, 2, 3, 4, 5].resize(2, 5); | ||
|
||
// applicable here, but only implemented for integer litterals for now | ||
vec!["foo", "bar", "baz"].resize(0, "bar"); | ||
|
||
// not applicable | ||
vec!["foo", "bar", "baz"].resize(2, "bar") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
error: emptying a vector with `resize` | ||
--> $DIR/vec_resize_to_zero.rs:5:5 | ||
| | ||
LL | vec![1, 2, 3, 4, 5].resize(0, 5); | ||
| ^^^^^^^^^^^^^^^^^^^^------------ | ||
| | | ||
| help: ...or you can empty the vector with: `clear()` | ||
| | ||
= note: `-D clippy::vec-resize-to-zero` implied by `-D warnings` | ||
= help: the arguments may be inverted... | ||
|
||
error: aborting due to previous error | ||
|