mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
b545f1c3bb
compiletest UI tests do not fail when encountering panics and ICEs unless the `// run-pass` flag is used. (This was forgotten in https://github.com/rust-lang/rust-clippy/pull/3743)
30 lines
614 B
Rust
30 lines
614 B
Rust
// run-pass
|
|
|
|
#![allow(dead_code)]
|
|
|
|
/// Issue: https://github.com/rust-lang/rust-clippy/issues/2596
|
|
pub fn loop_on_block_condition(u: &mut isize) {
|
|
while { *u < 0 } {
|
|
*u += 1;
|
|
}
|
|
}
|
|
|
|
/// https://github.com/rust-lang/rust-clippy/issues/2584
|
|
fn loop_with_unsafe_condition(ptr: *const u8) {
|
|
let mut len = 0;
|
|
while unsafe { *ptr.offset(len) } != 0 {
|
|
len += 1;
|
|
}
|
|
}
|
|
|
|
/// https://github.com/rust-lang/rust-clippy/issues/2710
|
|
static mut RUNNING: bool = true;
|
|
fn loop_on_static_condition() {
|
|
unsafe {
|
|
while RUNNING {
|
|
RUNNING = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|