aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/paste4.c
blob: 4e575c2954e823375e2667c5e92d1b1f75a41d3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright (C) 2000 Free Software Foundation, Inc.  */
/* { dg-do compile } */
/* { dg-options -save-temps } */

/* Since 1.0e and + form the pasted token, 1 is a separate token and
   so should be output with a preceding space.  The old preprocessor
   gets this wrong.  We use -save-temps to avoid direct use of the
   integrated preprocessor.  */

#define glue(x, y) x ## y

int main ()
{
  double d = glue (1.0e, +1); /* { dg-error "exponent|(parse|syntax) error" } */
  return 0;
}