aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/018.sh
blob: a9d4e1d86165ade40ed712777e739884724a3096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
touch expected
test_diff <<'EOF'
int main() {
    "";
    return 0;
}
EOF

touch expected
test_diff <<'EOF'
int main() {
    "abc";
    return 0;
}
EOF

touch expected
test_diff <<'EOF'
int main() {
    "\"foo\"bar\\\n\"";
    return 0;
}
EOF