Lines Matching full:while
1 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
4 LL | while break {}
5 | ^^^^^ unlabeled `break` in the condition of a `while` loop
7 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
10 LL | while let true = break {}
11 | ^^^^^ unlabeled `break` in the condition of a `while` loop
13 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
16 LL | loop { while break {} }
17 | ^^^^^ unlabeled `break` in the condition of a `while` loop
19 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
22 LL | while break {}
23 | ^^^^^ unlabeled `break` in the condition of a `while` loop
25 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
28 LL | while continue {}
29 | ^^^^^^^^ unlabeled `continue` in the condition of a `while` loop
31 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
34 LL | while let true = continue {}
35 | ^^^^^^^^ unlabeled `continue` in the condition of a `while` loop
37 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
40 LL | loop { while continue {} }
41 | ^^^^^^^^ unlabeled `continue` in the condition of a `while` loop
43 error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
46 LL | while continue {}
47 | ^^^^^^^^ unlabeled `continue` in the condition of a `while` loop