aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/087.sh
blob: 57e7612c192b7a82b270c36822f313cf8e885172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
cat <<'EOF' > expected
0
1
2
3
4
5
6
7
8
9
EOF

test_diff <<'EOF'
int printf();

int main() {
    for (int i = 0; i < 10; i++) {
        printf("%d\n", i);
    }
}
EOF