rust-clippy/tests/compile-fail
2016-02-09 21:22:30 +01:00
..
absurd-extreme-comparisons.rs Merge branch 'pr-613' 2016-02-10 01:03:26 +05:30
approx_const.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
array_indexing.rs Remove x rights on a test file 2016-01-03 14:49:59 +01:00
attrs.rs added semver lint 2016-01-09 02:05:43 +01:00
bit_masks.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
block_in_if_condition.rs fixed #528 2016-01-31 23:25:10 +01:00
box_vec.rs Merge pull request #523 from sanxiyn/escape-arg 2016-01-16 00:03:58 +01:00
cast.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
char_lit_as_u8.rs Add a lint for casts from char literals to u8 2016-01-27 20:23:59 +01:00
cmp_nan.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
cmp_owned.rs lint on items following statements 2016-01-24 10:16:56 +01:00
collapsible_if.rs Lint about else { if .. } with useless braces 2016-01-13 18:32:55 +01:00
complex_types.rs fallout 2016-02-01 13:01:16 +01:00
copies.rs Improve is_exp_equal 2016-02-07 13:26:34 +01:00
cyclomatic_complexity.rs Fix case conventions 2016-02-05 21:54:29 +01:00
derive.rs Lint explicit Clone implementations on Copy type 2016-01-24 15:33:23 +01:00
dlist.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
drop_ref.rs Add lint to warn for calls to std::mem::drop with a reference argument 2016-02-02 20:24:41 +01:00
duplicate_underscore_argument.rs Add new lint on function naming check (the '_') 2016-01-03 14:48:54 +01:00
entry.rs Use span_suggestion in ENTRY lint 2016-01-13 17:27:49 +01:00
enum_glob_use.rs warn on useing all variants of an enum 2016-02-03 15:38:23 +01:00
eq_op.rs Add - and / to EQ_OP 2016-02-07 13:26:34 +01:00
escape_analysis.rs fixed #606 2016-02-01 20:37:07 +01:00
eta.rs Fix redundant_closure false positive 2016-01-18 19:28:06 +01:00
float_cmp.rs use rustc's eval_const, bail on (negative) infinity 2015-11-10 11:23:47 +01:00
for_loop.rs Use const_eval in loops 2016-02-09 21:22:30 +01:00
identity_op.rs Add - and / to EQ_OP 2016-02-07 13:26:34 +01:00
item_after_statement.rs lint on items following statements 2016-01-24 10:16:56 +01:00
len_zero.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
let_return.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
let_unit.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
lifetimes.rs Fix false positive in NEEDLESS_LIFETIMES 2016-01-29 22:31:12 +01:00
map_clone.rs Add a lint about using clone on Copy types 2016-02-02 22:35:01 +01:00
matches.rs lint on single match expressions with a value in the else path 2016-02-01 11:29:03 +01:00
methods.rs Test for double-ref lint 2016-02-05 16:04:59 +05:30
min_max.rs Match min and max functions using DefId 2015-11-11 11:08:33 -05:00
modulo_one.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
mut_mut.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
mut_reference.rs Well, fix them again 2015-09-30 18:17:55 +02:00
mutex_atomic.rs Add a lint for sized integer types in a mutex 2015-10-07 22:58:34 +02:00
needless_bool.rs Lint ifs with the same then and else blocks 2016-02-07 13:26:34 +01:00
needless_features.rs Update to rustc 1.7.0-nightly (d0bac3f14 2016-01-18) 2016-01-18 13:27:42 +01:00
needless_return.rs Use suggestion for needless_return 2015-12-11 16:28:05 +09:00
needless_update.rs New lint for statement with no effect 2015-10-29 15:50:35 +09:00
no_effect.rs fallout 2016-02-01 13:01:16 +01:00
open_options.rs Fix case conventions 2016-02-05 21:54:29 +01:00
panic.rs Fix #518 2015-12-23 22:37:52 +01:00
patterns.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
precedence.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
print.rs Add a lint to warn about use of print{,ln}! 2016-01-28 19:34:52 +01:00
ptr_arg.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
range.rs Make clippy tests compatible with new lint 2015-12-12 21:39:10 -08:00
regex.rs regex macro lint 2016-02-07 22:50:54 +01:00
shadow.rs Upgrade rust to rustc 1.6.0-nightly (462ec0576 2015-12-09) 2015-12-09 15:56:49 -05:00
strings.rs Add lint for "string literal".as_bytes() 2016-01-19 19:17:50 +01:00
temporary_assignment.rs New lint for assignment to temporary 2015-11-04 21:37:18 +09:00
toplevel_ref_arg.rs Don’t use {:?} and use span_suggestion in TOPLEVEL_REF_ARG 2016-02-09 21:22:30 +01:00
transmute.rs Upgrade rust to rustc 1.6.0-nightly (462ec0576 2015-12-09) 2015-12-09 15:56:49 -05:00
unicode.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
unit_cmp.rs Tests shouldn't be executable (fixes #444) 2015-11-09 08:49:20 +05:30
unneeded_field_pattern.rs Add new lint on function naming check (the '_') 2016-01-03 14:48:54 +01:00
unused_lt.rs Consider lifetime in self paramter in unused_lifetime lint 2016-01-14 19:27:24 +01:00
used_underscore_binding.rs fallout 2016-02-01 13:01:16 +01:00
vec.rs Add a lint to warn about &vec![_] if &[_] would do 2016-01-29 17:41:52 +01:00
while_loop.rs compute cyclomatic complexity (adjusted to not punish Rust's match) 2015-12-03 16:41:55 +01:00
wrong_self_convention.rs Add missing WRONG_PUB_SELF_CONVENTION in lint_array! and corresponding test 2016-01-03 14:42:24 +01:00
zero_div_zero.rs Add - and / to EQ_OP 2016-02-07 13:26:34 +01:00