Home | History | Annotate | Download | only in Lexer
      1 /* RUN: %clang_cc1 -fsyntax-only -verify %s
      2  * expected-no-diagnostics */
      3 # define XRECORD(x, c_name) e##c (x, __LINE__)
      4 
      5 
      6 
      7 int ec(int, int);
      8 
      9 
     10  void x() {
     11 
     12 XRECORD (XRECORD (1, 1), 1);
     13     }
     14