aboutsummaryrefslogtreecommitdiffhomepage
path: root/src-cslul/fuzz/input/other.slul
blob: cf9e54bf12ecb39804eab1354b784496730add20 (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

\slul 0.0.0
\name fuzz
\version 0.1.0
\source abc.slul

func other()
{
    int a = 123
    [4]byte ba = [11,22,33,44]
    assert 1*3 != 0
    for int i in [1,a] {
        for byte b in ba {
            # dummy comment
        } loopempty {
            if i == b return
        }
        if i == 3*4 {
            var int k = i*(2+i)
            break
        }
    } loopend {
        var int x = 123
        do {
            x += 2
        } while x < 200
    }
}