aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/095.sh
blob: 58ee35fac6b82368f900af39622043db6f269e64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
set -e

cat <<'EOF' > expected
1 2 3 4
EOF

bash ../../test_diff.sh <<'EOF'
int printf();
int main() {
    int a, b;
    a = 1, b = 2;
    int c = 3, d = 4;
    printf("%d %d %d %d\n", a, b, c, d);
}
EOF