aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/031.sh
blob: a2b3832190e35154df4c32c46b5e0b729537c258 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
cat <<'EOF' > expected
42
EOF
test_diff <<'EOF'
int printf();

int main() {
    int a = 42;
    printf("%d\n", a);
    return 0;
}
EOF