1 /* Test for proper comment elimination semantics from cpplib's -traditional.
2 This should compile and link with compiled with `gcc -traditional-cpp'.
3 Test case by Jason R. Thorpe <thorpej@zembu.com>. */
5 /* { dg-do compile } */
7 extern int printf (const char *, ...);
9 #define A(name) X/**/name
12 void A(Y/**/name)() { A(name)(); }
14 void Xhello() { printf("hello world\n"); }
18 int main() { XYhello(); return (0); }