about summary refs log tree commit diff
path: root/tests/ui/needless_continue.rs
AgeCommit message (Collapse)AuthorLines
2019-03-12Fix `needless_continue` false positiveTaiki Endo-1/+65
2019-01-08Remove all copyright license headersPhilipp Hansch-9/+0
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
2018-12-09rustfmt testsMatthias Krüger-8/+8
2018-10-11Stabilize tool lintsOliver Scherer-1/+1
2018-10-06Add license header to Rust filesManish Goregaokar-0/+10
2018-08-29Adapt ui-tests to the tool_lintsflip1995-2/+2
2017-10-03Reduce the hackiness of cargo-clippyOliver Schneider-2/+2
2017-08-01Move all our tests back to ui testsOliver Schneider-0/+50
2017-05-17Make most tests an `example` so we can run them one by oneOliver Schneider-50/+0
2017-04-09needless_continue: Add ui testYati Sagade-0/+50
The test program contains both conditions tested by the lint, i.e., a redundant continue in the `if` and `else` blocks within a loop. Maybe splitting them out and also having a program that should *not* trigger the lint warning is better.