blob: 4eba5c93e7c53a6d8d0a5539368acbe076224b93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* $NetBSD: psym_while_expr.c,v 1.5 2023/06/02 15:07:46 rillig Exp $ */
/*
* Tests for the parser symbol psym_while_expr, which represents the keyword
* 'while' followed by the controlling expression, now waiting for the
* statement of the loop body.
*/
//indent input
// TODO: add input
//indent end
//indent run-equals-input
//indent input
void
function(void)
{
while(cond){}
do{}while(cond);
if(cmd)while(cond);
{}while(cond);
}
//indent end
//indent run
void
function(void)
{
while (cond) {
}
do {
} while (cond);
if (cmd)
while (cond);
{
}
while (cond);
}
//indent end
|