macro_arg_empty.c 228 B

1234567
  1. // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
  2. #define FOO(x) x
  3. #define BAR(x) x x
  4. #define BAZ(x) [x] [ x] [x ]
  5. [FOO()] [ FOO()] [FOO() ] [BAR()] [ BAR()] [BAR() ] BAZ()
  6. // CHECK: [] [ ] [ ] [ ] [ ] [ ] [] [ ] [ ]