aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/091.sh
blob: 9281811c018bfe4a2641a4085670737efcb755ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
set -e

cat <<'EOF' > expected
2 5
EOF

bash ../../test_diff.sh <<'EOF'
int printf();

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