aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_identifiers.sh
blob: 5786ff77b2224fa522fbd296a0bdb2c4b97c2f47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cat <<'EOF' > expected
42,123
EOF
test_diff <<'EOF'
int printf();

int main() {
    int _a = 42;
    int _b = 123;

    printf("%d,%d\n", _a, _b);

    return 0;
}
EOF