aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/cpp/paste10.c
blob: ab3cb9050bee8a3b678987e06042946aba664163 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Copyright (C) 2000 Free Software Foundation, Inc.  */

/* { dg-do preprocess } */
/* { dg-options "" } */

/* This testcase used to produce a bogus "invalid paste" warning, owing
   to not clearing a PASTE_LEFT flag.  */

#define strcpy(src) __strcpy_small (src)

#define __strcpy_small(src) src

#define tprintf(format, args...) sprintf(format, ## args)

strcpy(tprintf("<%s>", test))