16 lines · cpp
1// RUN: %clang_cl /E -Xclang -frewrite-includes -- %s | %clang_cl /c -Xclang -verify /Tp -2// expected-no-diagnostics3 4// This test uses dos-style \r\n line endings.5// Make sure your editor doesn't rewrite them to unix-style \n line endings.6int foo();7int bar();8#define HELLO \9 foo(); \10 bar();11 12int main() {13 HELLO14 return 0;15}16