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

/* { dg-do compile } */

/* Test we output an error for concatenation of artificial strings.

   Neil Booth, 10 Dec 2001.  */

void foo ()
{
  char s1[] = __FUNCTION__".";	     /* { dg-error "(parse|syntax|expected|invalid|array)" } */
  char s2[] = __PRETTY_FUNCTION__".";/* { dg-error "(parse|syntax|expected|invalid|array)" } */
  char s3[] = "."__FUNCTION__;	     /* { dg-error "(parse|syntax|expected|invalid)" } */
  char s4[] = "."__PRETTY_FUNCTION__;/* { dg-error "(parse|syntax|expected|invalid)" } */
  char s5[] = "."".";                /* No error.  */
}