xref: /minix3/external/bsd/llvm/dist/clang/test/Preprocessor/macro_expandloc.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -E -verify %s
2*f4a2713aSLionel Sambuc #define FOO 1
3*f4a2713aSLionel Sambuc 
4*f4a2713aSLionel Sambuc // The error message should be on the #include line, not the 1.
5*f4a2713aSLionel Sambuc 
6*f4a2713aSLionel Sambuc // expected-error@+1 {{expected "FILENAME" or <FILENAME>}}
7*f4a2713aSLionel Sambuc #include FOO
8*f4a2713aSLionel Sambuc 
9*f4a2713aSLionel Sambuc #define BAR BAZ
10*f4a2713aSLionel Sambuc 
11*f4a2713aSLionel Sambuc // expected-error@+1 {{expected "FILENAME" or <FILENAME>}}
12*f4a2713aSLionel Sambuc #include BAR
13*f4a2713aSLionel Sambuc 
14