blob: 18e9bd754692a026b06e979acacce215c4634f8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
set -e
cat <<'EOF' > expected
expected '{', but got '}'
EOF
bash ../../test_compile_error.sh <<'EOF'
int main() }
EOF
cat <<'EOF' > expected
expected '{', but got '123 (<integer>)'
EOF
bash ../../test_compile_error.sh <<'EOF'
int main() 123
EOF
|