aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/091.sh
blob: a64c8ff2e99d4b8dd3703ab79749a03e5354b7f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
cat <<'EOF' > expected
2 5
EOF

test_diff <<'EOF'
int printf();

int main() {
    printf("%d %d\n", 1 ? 2 : 3, 0 ? 4 : 5);
}
EOF