rust/tests/ui/never_loop.rs

191 lines
3 KiB
Rust
Raw Normal View History

2018-10-06 18:18:06 +02:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2018-10-11 12:16:22 +02:00
2017-09-18 12:47:33 +02:00
2018-07-28 17:34:52 +02:00
#![allow(clippy::single_match, unused_assignments, unused_variables, clippy::while_immutable_condition)]
2017-06-01 06:22:15 +02:00
fn test1() {
let mut x = 0;
2018-07-28 17:34:52 +02:00
loop { // clippy::never_loop
2017-06-01 06:22:15 +02:00
x += 1;
if x == 1 {
return
}
break;
}
2017-05-31 03:44:01 +02:00
}
2017-06-01 06:22:15 +02:00
fn test2() {
let mut x = 0;
loop {
2017-06-01 06:22:15 +02:00
x += 1;
if x == 1 {
2017-05-31 03:44:01 +02:00
break
}
}
2017-05-31 03:44:01 +02:00
}
2017-06-01 06:22:15 +02:00
fn test3() {
let mut x = 0;
loop { // never loops
x += 1;
2017-05-31 03:44:01 +02:00
break
}
2017-05-31 03:44:01 +02:00
}
2017-06-01 06:22:15 +02:00
fn test4() {
let mut x = 1;
loop {
2017-06-01 06:22:15 +02:00
x += 1;
match x {
5 => return,
_ => (),
}
}
}
2017-05-31 03:44:01 +02:00
2017-06-01 06:22:15 +02:00
fn test5() {
let i = 0;
loop { // never loops
while i == 0 { // never loops
break
}
return
}
}
fn test6() {
let mut x = 0;
2017-09-14 15:27:29 +02:00
'outer: loop {
2017-06-01 06:22:15 +02:00
x += 1;
loop { // never loops
if x == 5 { break }
continue 'outer
}
return
}
}
fn test7() {
let mut x = 0;
2017-05-31 03:44:01 +02:00
loop {
2017-06-01 06:22:15 +02:00
x += 1;
2017-05-31 03:44:01 +02:00
match x {
2017-06-01 06:22:15 +02:00
1 => continue,
2017-05-31 03:44:01 +02:00
_ => (),
}
2017-06-01 06:22:15 +02:00
return
}
}
fn test8() {
let mut x = 0;
loop {
x += 1;
match x {
5 => return,
_ => continue,
}
}
}
fn test9() {
let x = Some(1);
while let Some(y) = x { // never loops
return
}
}
fn test10() {
for x in 0..10 { // never loops
match x {
1 => break,
_ => return,
}
2017-05-31 03:44:01 +02:00
}
}
2017-07-05 03:56:05 +02:00
fn test11<F: FnMut() -> i32>(mut f: F) {
loop {
return match f() {
1 => continue,
_ => (),
}
}
}
2017-09-14 15:27:29 +02:00
pub fn test12(a: bool, b: bool) {
'label: loop {
loop {
if a {
continue 'label;
}
if b {
break;
}
}
break;
}
}
2017-10-06 06:46:08 +02:00
pub fn test13() {
let mut a = true;
loop { // infinite loop
while a {
if true {
a = false;
continue;
}
return;
}
}
}
2017-10-06 06:46:08 +02:00
pub fn test14() {
let mut a = true;
'outer: while a { // never loops
while a {
if a {
a = false;
continue
}
}
break 'outer;
}
}
// Issue #1991: the outter loop should not warn.
pub fn test15() {
'label: loop {
while false {
break 'label;
}
}
}
2017-05-31 03:44:01 +02:00
fn main() {
2017-06-01 06:22:15 +02:00
test1();
test2();
test3();
test4();
test5();
test6();
test7();
test8();
test9();
test10();
2017-07-05 03:56:05 +02:00
test11(|| 0);
2017-09-14 15:27:29 +02:00
test12(true, false);
2017-10-06 06:46:08 +02:00
test13();
2017-10-06 06:46:08 +02:00
test14();
2017-05-31 03:44:01 +02:00
}
2017-06-01 06:22:15 +02:00