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

test_diff <<'EOF'
#define foo() 123

int printf();

int main() {
    printf("%d\n", foo());
}
EOF