tr-paste.c

来自「gcc3.2.1源代码」· C语言 代码 · 共 18 行

C
18
字号
/* Test for proper comment elimination semantics from cpplib's -traditional.   This should compile and link with compiled with `gcc -traditional-cpp'.   Test case by Jason R. Thorpe <thorpej@zembu.com>.  *//* { dg-do compile } *//* { dg-options "-traditional-cpp" } */#define A(name) X/**/name#define B(name) \void A(Y/**/name)() { A(name)(); }void Xhello() { printf("hello world\n"); }B(hello)int main() { XYhello(); return (0); }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?