aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/comma2.C
blob: 0f405876d5753759c74aa7eaf78cffd63d47b0ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do compile }

// Copyright (C) 2005 Free Software Foundation, Inc.

// PR c++/24907 [3.4/4.0/4.1/4.2 Regression] "int x, ;" accepted

int x;
int y,; /* { dg-error "expected" } */

int main()
{
  int a;
  int b,;    /* { dg-error "expected" } */
  int c,d;
  int e,f,;  /* { dg-error "expected" } */
  int g,h,i;
  int j,k,l,;/* { dg-error "expected" } */
  int m,,,n; /* { dg-error "expected" } */
}