blob: 338b879114b76ad0f715fd97aace1644cdcd6d17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
cat <<'EOF' > expected
main.c:2: expected '#endif', but got '<eof>'
EOF
test_compile_error <<'EOF'
#if 0
EOF
cat <<'EOF' > expected
main.c:3: expected '#endif', but got '<eof>'
EOF
test_compile_error <<'EOF'
#if 1
#else
EOF
cat <<'EOF' > expected
main.c:3: expected '#endif', but got '<eof>'
EOF
test_compile_error <<'EOF'
#if 1
#elif 1
EOF
|