mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 16:46:08 +00:00
16 lines
337 B
C++
16 lines
337 B
C++
// RUN: %clang_cl /E -Xclang -frewrite-includes -- %s | %clang_cl /c -Xclang -verify /Tp -
|
|
// expected-no-diagnostics
|
|
|
|
// This test uses dos-style \r\n line endings.
|
|
// Make sure your editor doesn't rewrite them to unix-style \n line endings.
|
|
int foo();
|
|
int bar();
|
|
#define HELLO \
|
|
foo(); \
|
|
bar();
|
|
|
|
int main() {
|
|
HELLO
|
|
return 0;
|
|
}
|