2018-05-27 21:59:07 +00:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
2018-11-22 03:40:09 +00:00
|
|
|
/// Issue: https://github.com/rust-lang/rust-clippy/issues/2596
|
2018-05-27 21:59:07 +00:00
|
|
|
pub fn loop_on_block_condition(u: &mut isize) {
|
|
|
|
while { *u < 0 } {
|
|
|
|
*u += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-22 03:40:09 +00:00
|
|
|
/// https://github.com/rust-lang/rust-clippy/issues/2584
|
2018-05-27 21:59:07 +00:00
|
|
|
fn loop_with_unsafe_condition(ptr: *const u8) {
|
|
|
|
let mut len = 0;
|
|
|
|
while unsafe { *ptr.offset(len) } != 0 {
|
|
|
|
len += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-22 03:40:09 +00:00
|
|
|
/// https://github.com/rust-lang/rust-clippy/issues/2710
|
2018-05-27 21:59:07 +00:00
|
|
|
static mut RUNNING: bool = true;
|
|
|
|
fn loop_on_static_condition() {
|
|
|
|
unsafe {
|
|
|
|
while RUNNING {
|
|
|
|
RUNNING = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|