Logo
Explore Help
Register Sign In
rust-lang/rust
1
0
Fork 0
You've already forked rust
Code Issues Pull Requests Actions 1 Packages Projects Releases Wiki Activity
Files
6433d796a1e22ea37f9b51bda5248b9ac82df578
rust/tests/ui/reversed_empty_ranges_loops_unfixable.rs

13 lines
215 B
Rust
Raw Normal View History

Re-add old tests for empty range loops
2020-05-11 23:48:48 +02:00
#![warn(clippy::reversed_empty_ranges)]
fallout: fix tests to allow uninlined_format_args In order to switch `clippy::uninlined_format_args` from pedantic to style, all existing tests must not raise a warning. I did not want to change the actual tests, so this is a relatively minor change that: * add `#![allow(clippy::uninlined_format_args)]` where needed * normalizes all allow/deny/warn attributes * all allow attributes are grouped together * sorted alphabetically * the `clippy::*` attributes are listed separate from the other ones. * deny and warn attributes are listed before the allowed ones changelog: none
2022-10-02 15:13:22 -04:00
#![allow(clippy::uninlined_format_args)]
Re-add old tests for empty range loops
2020-05-11 23:48:48 +02:00
fn main() {
for i in 5..5 {
println!("{}", i);
}
for i in (5 + 2)..(8 - 1) {
println!("{}", i);
}
}
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.24.6 Page: 935ms Template: 3ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API