builtin_line.c 242 B

123456789101112131415
  1. // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
  2. #define FOO __LINE__
  3. FOO
  4. // CHECK: {{^}} 4{{$}}
  5. // PR3579 - This should expand to the __LINE__ of the ')' not of the X.
  6. #define X() __LINE__
  7. A X(
  8. )
  9. // CHECK: {{^}}A 13{{$}}