blob: e5aaf220e3e7b5b7d8e893b924fce7f4fa127b3c (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* Testcase for memory corruption bug in macro processing.
See PR preprocessor/19077 for details. */
/* { dg-do compile } */
/* { dg-options "-g3" } */
#define FOO(a,b,c,d,e) a b c d e \
" " \
" " \
" "
int i;
|