mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-17 17:59:36 +08:00
* paste9.c: New preprocessor ## test.
From-SVN: r36419
This commit is contained in:
parent
395a451c8c
commit
ec1fb90e95
23
gcc/testsuite/gcc.dg/cpp/paste9.c
Normal file
23
gcc/testsuite/gcc.dg/cpp/paste9.c
Normal file
@ -0,0 +1,23 @@
|
||||
/* Copyright (C) 2000 Free Software Foundation, Inc. */
|
||||
|
||||
/* { dg-do run } */
|
||||
/* { dg-options "" } */
|
||||
|
||||
/* Apparently older preprocessors used to fail this test. */
|
||||
|
||||
#include <string.h>
|
||||
|
||||
extern void abort (void);
|
||||
|
||||
#define S(str, args...) " " str "\n", ##args
|
||||
|
||||
int
|
||||
main()
|
||||
{
|
||||
const char *s = S("foo");
|
||||
|
||||
if (strchr (s, '\n') == NULL)
|
||||
abort ();
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user