1 // RUN: %clang_cc1 -E -verify %s 2 #define FOO 1 3 4 // The error message should be on the #include line, not the 1. 5 6 // expected-error@+1 {{expected "FILENAME" or <FILENAME>}} 7 #include FOO 8 9 #define BAR BAZ 10 11 // expected-error@+1 {{expected "FILENAME" or <FILENAME>}} 12 #include BAR 13 14