mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 21:15:18 +03:00
added fp test against negative .step_by(_)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#![feature(plugin)]
|
||||
#![feature(plugin, step_by)]
|
||||
#![plugin(clippy)]
|
||||
|
||||
use std::collections::*;
|
||||
@@ -71,6 +71,10 @@ fn main() {
|
||||
println!("{}", i);
|
||||
}
|
||||
|
||||
for i in (10..8).step_by(-1) {
|
||||
println!("{}", i);
|
||||
}
|
||||
|
||||
let x = 42;
|
||||
for i in x..10 { // no error, not constant-foldable
|
||||
println!("{}", i);
|
||||
|
||||
Reference in New Issue
Block a user